37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
From d3bc903b487bb301395947f692ce0d8c130874e3 Mon Sep 17 00:00:00 2001
|
|
From: fujiwarat <takao.fujiwara1@gmail.com>
|
|
Date: Sat, 6 Oct 2012 17:54:27 +0900
|
|
Subject: [PATCH] Fix not to switch engines by non-trigger keys.
|
|
|
|
---
|
|
ui/gtk3/switcher.vala | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/ui/gtk3/switcher.vala b/ui/gtk3/switcher.vala
|
|
index 4a02743..c606682 100644
|
|
--- a/ui/gtk3/switcher.vala
|
|
+++ b/ui/gtk3/switcher.vala
|
|
@@ -140,6 +140,7 @@ class Switcher : Gtk.Window {
|
|
/* Let gtk recalculate the window size. */
|
|
resize(1, 1);
|
|
|
|
+ m_result = 0;
|
|
m_selected_engine = index;
|
|
m_label.set_text(m_buttons[index].longname);
|
|
m_buttons[index].grab_focus();
|
|
@@ -378,6 +379,11 @@ class Switcher : Gtk.Window {
|
|
break;
|
|
default:
|
|
debug("0x%04x", pe->keyval);
|
|
+ if (m_loop != null) {
|
|
+ m_loop.quit();
|
|
+ m_loop = null;
|
|
+ }
|
|
+ retval = false;
|
|
break;
|
|
}
|
|
} while (false);
|
|
--
|
|
1.8.0
|
|
|