diff options
author | 2017-08-10 18:05:54 +1000 | |
---|---|---|
committer | 2017-08-10 18:05:54 +1000 | |
commit | b363e92b5d14d988833242b4ce876bcdfac3cc65 (patch) | |
tree | a3b23a966362eb76bcbf6d2afe3120c630093d3d /src/osd/modules/debugger/debugimgui.cpp | |
parent | 7145f33cdf207267a7d0f3a56932e94f154851d0 (diff) |
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
Diffstat (limited to 'src/osd/modules/debugger/debugimgui.cpp')
-rw-r--r-- | src/osd/modules/debugger/debugimgui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |