mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:47:44 +00:00
LibGUI: Add a new constructor to Action
This constructor allows you to omit the modifier keys. Instead of doing "{ 0, Key_F5 }" you can now just do "Key_F5"
This commit is contained in:
parent
3e6a5af32b
commit
b05078b610
1 changed files with 5 additions and 0 deletions
|
@ -19,6 +19,11 @@ public:
|
|||
, m_key(key)
|
||||
{
|
||||
}
|
||||
Shortcut(KeyCode key)
|
||||
: m_modifiers(0)
|
||||
, m_key(key)
|
||||
{
|
||||
}
|
||||
|
||||
bool is_valid() const { return m_key != KeyCode::Key_Invalid; }
|
||||
u8 modifiers() const { return m_modifiers; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue