mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
HexEditor: Allow keydown events to propagate if they are not handled
This commit is contained in:
parent
7ce346e50e
commit
76627ec0a2
Notes:
sideshowbarker
2024-07-18 00:41:35 +09:00
Author: https://github.com/Zaggy1024 Commit: https://github.com/SerenityOS/serenity/commit/76627ec0a2 Pull-request: https://github.com/SerenityOS/serenity/pull/15788 Reviewed-by: https://github.com/ADKaster Reviewed-by: https://github.com/AtkinsSJ ✅
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…
Reference in a new issue