From 76627ec0a24f84331d34220adadae172f8c4e108 Mon Sep 17 00:00:00 2001 From: Zaggy1024 Date: Tue, 25 Oct 2022 00:18:38 -0500 Subject: [PATCH] HexEditor: Allow keydown events to propagate if they are not handled --- Userland/Applications/HexEditor/HexEditor.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Userland/Applications/HexEditor/HexEditor.cpp b/Userland/Applications/HexEditor/HexEditor.cpp index 5aff8d3f5d..0da1a8e920 100644 --- a/Userland/Applications/HexEditor/HexEditor.cpp +++ b/Userland/Applications/HexEditor/HexEditor.cpp @@ -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)