Presenter: Ignore unhandled keydown events

This makes Action shortcuts work again. :^)
This commit is contained in:
Sam Atkins 2022-12-14 15:52:17 +00:00 committed by Linus Groh
parent 4752d8fd08
commit 97e157708f
Notes: sideshowbarker 2024-07-17 08:37:36 +09:00

View file

@ -108,6 +108,7 @@ void PresenterWidget::keydown_event(GUI::KeyEvent& event)
event.accept();
break;
default:
event.ignore();
break;
}
}