mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
LibGUI: Add missing altgr() modifier key
This commit is contained in:
parent
87d19dfa28
commit
d47573eba6
1 changed files with 1 additions and 0 deletions
|
@ -332,6 +332,7 @@ public:
|
|||
KeyCode key() const { return m_key; }
|
||||
bool ctrl() const { return m_modifiers & Mod_Ctrl; }
|
||||
bool alt() const { return m_modifiers & Mod_Alt; }
|
||||
bool altgr() const { return m_modifiers & Mod_AltGr; }
|
||||
bool shift() const { return m_modifiers & Mod_Shift; }
|
||||
bool super() const { return m_modifiers & Mod_Super; }
|
||||
u8 modifiers() const { return m_modifiers; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue