1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 23:38:11 +00:00

LibGUI: Remove bitrotted automatic keybinds feature

This feature hasn't been working at all for several months, so let's
just remove it and simplify GWindow event handling.
This commit is contained in:
Andreas Kling 2019-12-26 23:29:18 +01:00
parent c85bdff57a
commit 23e16a3e2e
6 changed files with 4 additions and 132 deletions

View file

@ -31,7 +31,6 @@ public:
void set_action(GAction&);
virtual bool accepts_focus() const override { return m_focusable; }
virtual bool supports_keyboard_activation() const override;
virtual bool is_uncheckable() const override;
void set_focusable(bool b) { m_focusable = b; }