1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:28:10 +00: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

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&)