summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorfujiwarat <takao.fujiwara1@gmail.com>2013-05-13 16:36:19 +0900
committerfujiwarat <takao.fujiwara1@gmail.com>2013-05-13 16:36:19 +0900
commitf3d80dc026853c1024cdf6bda31b1496939cb095 (patch)
treed77bbe51864215371225a81d7d31b97cf91faf11 /ui
parent927e9f58da9b4a9898403c8e339109e2ad2fa966 (diff)
Defalut triggers key is changed to <Super>space.
We have been used <Control>space as the default triggers key. GNOME3 and Windows7 applied <Super>space as the default trigger key and IBus follows it for the consistent key between desktops. BUG=RH#953404 Review URL: https://codereview.appspot.com/9081043
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk3/panel.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk3/panel.vala b/ui/gtk3/panel.vala
index 8090a428..0c793f43 100644
--- a/ui/gtk3/panel.vala
+++ b/ui/gtk3/panel.vala
@@ -49,7 +49,7 @@ class Panel : IBus.PanelService {
private Gtk.CssProvider m_css_provider;
private int m_switcher_delay_time = 400;
private bool m_use_system_keyboard_layout = false;
- private const string ACCELERATOR_SWITCH_IME_FOREWARD = "<Control>space";
+ private const string ACCELERATOR_SWITCH_IME_FOREWARD = "<Super>space";
private GLib.List<Keybinding> m_keybindings = new GLib.List<Keybinding>();
@@ -74,7 +74,7 @@ class Panel : IBus.PanelService {
m_candidate_panel.page_down.connect((w) => this.page_down());
m_switcher = new Switcher();
- // The initial shortcut is "<Control>space"
+ // The initial shortcut is "<Super>space"
bind_switch_shortcut(null);
if (m_switcher_delay_time >= 0) {