1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:07:34 +00:00

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

View file

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