mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Detect the "Logo" (Windows/Apple/whatever) key and use it for window resize.
This will be comfortable enough while I'm still developing with emulators. QEMU keeps eating my "Alt" key presses and it's making things difficult.
This commit is contained in:
@@ -124,6 +124,8 @@ String GShortcut::to_string() const
|
||||
parts.append("Shift");
|
||||
if (m_modifiers & Mod_Alt)
|
||||
parts.append("Alt");
|
||||
if (m_modifiers & Mod_Logo)
|
||||
parts.append("Logo");
|
||||
|
||||
parts.append(::to_string(m_key));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user