1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-12 02:30:30 +09:00

LibGUI: Ignore KeyUp events by default

fixed #2576
This commit is contained in:
Peter Elliott 2020-07-06 13:08:00 -06:00 committed by Andreas Kling
parent 7241b9ca0c
commit 0fd31ef598
Notes: sideshowbarker 2024-07-19 04:56:56 +09:00

View file

@ -365,8 +365,9 @@ void Widget::keydown_event(KeyEvent& event)
event.ignore();
}
void Widget::keyup_event(KeyEvent&)
void Widget::keyup_event(KeyEvent& event)
{
event.ignore();
}
void Widget::mousedown_event(MouseEvent&)