LibGUI: Fix bad KeyEvent::m_key initializer to unbreak SDL2 port

This commit is contained in:
Andreas Kling 2020-06-04 16:02:40 +02:00
parent b67acf9c88
commit 5be613c9c8
Notes: sideshowbarker 2024-07-19 05:50:18 +09:00

View File

@ -288,7 +288,7 @@ public:
private:
friend class WindowServerConnection;
KeyCode m_key { 0 };
KeyCode m_key { KeyCode::Key_Invalid };
u8 m_modifiers { 0 };
u32 m_scancode { 0 };
String m_text;