[Xfce4-commits] <midori:master> Swap Next Tab and Previous Tab menu items
Christian Dywan
noreply at xfce.org
Tue Nov 10 22:06:02 CET 2009
Updating branch refs/heads/master
to ae0c01705a2366be9b76e08a8d16afdcb70a5373 (commit)
from cc7bc356e8f74fc736a6b33cde2e9c95c0919836 (commit)
commit ae0c01705a2366be9b76e08a8d16afdcb70a5373
Author: Christian Dywan <christian at twotoasts.de>
Date: Tue Nov 10 20:07:10 2009 +0100
Swap Next Tab and Previous Tab menu items
midori/midori-browser.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/midori/midori-browser.c b/midori/midori-browser.c
index 08da67b..91ba911 100644
--- a/midori/midori-browser.c
+++ b/midori/midori-browser.c
@@ -2931,11 +2931,11 @@ _action_window_populate_popup (GtkAction* action,
gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menuitem);
gtk_widget_show (menuitem);
menuitem = gtk_action_create_menu_item (
- _action_by_name (browser, "TabPrevious"));
+ _action_by_name (browser, "TabNext"));
gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menuitem);
gtk_widget_show (menuitem);
menuitem = gtk_action_create_menu_item (
- _action_by_name (browser, "TabNext"));
+ _action_by_name (browser, "TabPrevious"));
gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menuitem);
gtk_widget_show (menuitem);
}
More information about the Xfce4-commits
mailing list