mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00: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 {
|
} else {
|
||||||
text_mode_keydown_event(event);
|
text_mode_keydown_event(event);
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event.ignore();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HexEditor::hex_mode_keydown_event(GUI::KeyEvent& event)
|
void HexEditor::hex_mode_keydown_event(GUI::KeyEvent& event)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue