[Xfce4-commits] <parole:master> Fix order of right-click menu to be consistent with the rest of the application

Sean Davis noreply at xfce.org
Sat Nov 2 13:14:01 CET 2013


Updating branch refs/heads/master
         to d69a4206a65feee38e67abd7cc56e9dbff8cd459 (commit)
       from f7b40ffc15a5b6bcc53cbee1affe276e4499401c (commit)

commit d69a4206a65feee38e67abd7cc56e9dbff8cd459
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Sat Nov 2 08:12:24 2013 -0400

    Fix order of right-click menu to be consistent with the rest of the application

 src/parole-player.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/parole-player.c b/src/parole-player.c
index 5bb2c8e..e3b1067 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -2050,15 +2050,15 @@ parole_player_show_menu (ParolePlayer *player, guint button, guint activate_time
     gtk_menu_shell_append (GTK_MENU_SHELL (menu), mi);
     
     /*
-     * Next item in playlist.
+     * Previous item in playlist.
      */
-    mi = gtk_action_create_menu_item(player->priv->media_next_action);
+    mi = gtk_action_create_menu_item(player->priv->media_previous_action);
     gtk_menu_shell_append (GTK_MENU_SHELL (menu), mi);
     
     /*
-     * Previous item in playlist.
+     * Next item in playlist.
      */
-    mi = gtk_action_create_menu_item(player->priv->media_previous_action);
+    mi = gtk_action_create_menu_item(player->priv->media_next_action);
     gtk_menu_shell_append (GTK_MENU_SHELL (menu), mi);
     
     /*


More information about the Xfce4-commits mailing list