diff options
author | Michael Meeks <michael.meeks@novell.com> | 2010-03-04 18:26:31 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-14 09:53:17 +0800 |
commit | 51cbd483d163138c3b570b01f0921f767ca64a7e (patch) | |
tree | 84d6116e1c25ce57a8fdf5798feb634744e4c075 /shell/e-shell-window-actions.c | |
parent | f309ab6ad224f7dbb10176d4197ee674c7a84f38 (diff) | |
download | gsoc2013-evolution-51cbd483d163138c3b570b01f0921f767ca64a7e.tar.gz gsoc2013-evolution-51cbd483d163138c3b570b01f0921f767ca64a7e.tar.zst gsoc2013-evolution-51cbd483d163138c3b570b01f0921f767ca64a7e.zip |
re-enable middle-click to open in new window with new actions
Diffstat (limited to 'shell/e-shell-window-actions.c')
-rw-r--r-- | shell/e-shell-window-actions.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/e-shell-window-actions.c b/shell/e-shell-window-actions.c index 7a091a1c49..c2c5aea1af 100644 --- a/shell/e-shell-window-actions.c +++ b/shell/e-shell-window-actions.c @@ -2216,7 +2216,6 @@ e_shell_window_create_switcher_actions (EShellWindow *shell_window) gtk_action_group_add_action_with_accel ( s_action_group, GTK_ACTION (s_action), accelerator); - e_shell_switcher_add_action (switcher, GTK_ACTION (s_action)); g_free (accelerator); @@ -2237,6 +2236,8 @@ e_shell_window_create_switcher_actions (EShellWindow *shell_window) shell_window); gtk_action_group_add_action (n_action_group, n_action); + e_shell_switcher_add_action (switcher, GTK_ACTION (s_action), n_action); + g_free (n_action_name); g_free (tooltip); |