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:
Aatos Majava 2021-06-24 18:09:41 +03:00 committed by Andreas Kling
parent 3e6a5af32b
commit b05078b610
Notes: sideshowbarker 2024-07-18 11:33:47 +09:00

View file

@ -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; }