mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
HexEditor: Allow keydown events to propagate if they are not handled
This commit is contained in:
parent
7ce346e50e
commit
76627ec0a2
1 changed files with 3 additions and 0 deletions
|
@ -468,7 +468,10 @@ void HexEditor::keydown_event(GUI::KeyEvent& event)
|
|||
} else {
|
||||
text_mode_keydown_event(event);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
event.ignore();
|
||||
}
|
||||
|
||||
void HexEditor::hex_mode_keydown_event(GUI::KeyEvent& event)
|
||||
|
|
Loading…
Add table
Reference in a new issue