region: Remove "Shift" hack from region panel

The region panel hardcodes that to switch input source backward, one
uses the shift modfier with the shortcut to switch input source forward.

https://bugzilla.gnome.org/show_bug.cgi?id=731618
This commit is contained in:
Christophe Fergeau 2014-05-02 11:33:15 +02:00
parent c77d164aa9
commit 5572fb9a75

View file

@ -88,8 +88,6 @@ update_shortcuts (GtkWidget *options)
next = g_settings_get_strv (settings, "switch-input-source");
previous_shortcut = g_strdup (previous[0]);
if (!previous_shortcut && next[0] && *next[0])
previous_shortcut = g_strconcat ("<Shift>", next[0], NULL);
update_shortcut_label (priv->previous_source, previous_shortcut);
update_shortcut_label (priv->next_source, next[0]);