mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 08:50:37 +00:00
Presenter: Ignore unhandled keydown events
This makes Action shortcuts work again. :^)
This commit is contained in:
parent
4752d8fd08
commit
97e157708f
Notes:
sideshowbarker
2024-07-17 08:37:36 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/97e157708f Pull-request: https://github.com/SerenityOS/serenity/pull/16494 Reviewed-by: https://github.com/linusg ✅
1 changed files with 1 additions and 0 deletions
|
@ -108,6 +108,7 @@ void PresenterWidget::keydown_event(GUI::KeyEvent& event)
|
|||
event.accept();
|
||||
break;
|
||||
default:
|
||||
event.ignore();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue