From b363e92b5d14d988833242b4ce876bcdfac3cc65 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Thu, 10 Aug 2017 18:05:54 +1000 Subject: Don't process every character individually when searching - this reduces lag if you keep typing while a big list is searched. (nw) patch up German translation --- src/osd/modules/debugger/debugimgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/osd/modules/debugger/debugimgui.cpp') diff --git a/src/osd/modules/debugger/debugimgui.cpp b/src/osd/modules/debugger/debugimgui.cpp index 05f56521b18..293ac0229df 100644 --- a/src/osd/modules/debugger/debugimgui.cpp +++ b/src/osd/modules/debugger/debugimgui.cpp @@ -358,7 +358,7 @@ void debug_imgui::handle_keys() { switch (event.event_type) { - case UI_EVENT_CHAR: + case ui_event::IME_CHAR: m_key_char = event.ch; if(focus_view != nullptr) focus_view->view->process_char(m_key_char); -- cgit v1.2.3