From 97e157708f1fbf70710b6a8b85ab591494f62c94 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 14 Dec 2022 15:52:17 +0000 Subject: [PATCH] Presenter: Ignore unhandled keydown events This makes Action shortcuts work again. :^) --- Userland/Applications/Presenter/PresenterWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/Presenter/PresenterWidget.cpp b/Userland/Applications/Presenter/PresenterWidget.cpp index 21d2f7d1599..66c112af151 100644 --- a/Userland/Applications/Presenter/PresenterWidget.cpp +++ b/Userland/Applications/Presenter/PresenterWidget.cpp @@ -108,6 +108,7 @@ void PresenterWidget::keydown_event(GUI::KeyEvent& event) event.accept(); break; default: + event.ignore(); break; } }