mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
KeyboardMapper: Call event.ignore() on keydown in the main widget
This commit is contained in:
parent
76627ec0a2
commit
66b15e6cd6
1 changed files with 2 additions and 0 deletions
|
@ -216,6 +216,8 @@ void KeyboardMapperWidget::keydown_event(GUI::KeyEvent& event)
|
|||
if (m_automatic_modifier && event.modifiers() > 0) {
|
||||
update_modifier_radio_buttons(event);
|
||||
}
|
||||
|
||||
event.ignore();
|
||||
}
|
||||
|
||||
void KeyboardMapperWidget::keyup_event(GUI::KeyEvent& event)
|
||||
|
|
Loading…
Add table
Reference in a new issue