1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +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();
break;
default:
event.ignore();
break;
}
}