From 181208a53112866abad2b311d2cefcee2656e2ec Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 16 Oct 2012 07:58:10 -0700 Subject: [PATCH] Skip unprocessed keydown events in the styling assistant so that typing style names actually works --- aegisub/src/dialog_styling_assistant.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aegisub/src/dialog_styling_assistant.cpp b/aegisub/src/dialog_styling_assistant.cpp index be2108d61..7bd313260 100644 --- a/aegisub/src/dialog_styling_assistant.cpp +++ b/aegisub/src/dialog_styling_assistant.cpp @@ -259,4 +259,6 @@ void DialogStyling::OnKeyDown(wxKeyEvent &evt) { if (from > 0) style_name->SetSelection(from - 1, to); } + else + evt.Skip(); }