diff src/audacious/ui_manager.c @ 4055:cb1fdf8bafac

slightly regroup playlist delete items
author mf0102 <0102@gmx.at>
date Sun, 02 Dec 2007 21:35:04 +0100
parents d3b549e75380
children 9e7fe796537f
line wrap: on
line diff
--- a/src/audacious/ui_manager.c	Sun Dec 02 21:21:21 2007 +0100
+++ b/src/audacious/ui_manager.c	Sun Dec 02 21:35:04 2007 +0100
@@ -267,6 +267,10 @@
 };
 
 static GtkActionEntry action_entries_playlist_delete[] = {
+	{ "playlist remove all", GTK_STOCK_CLEAR, N_("Remove All"), NULL, 
+	  N_("Removes all entries from the playlist."),
+	  G_CALLBACK(action_playlist_remove_all) },
+
 	{ "playlist clear queue", GTK_STOCK_CLEAR, N_("Clear Queue"), "<Shift>Q",
 	  N_("Clears the queue associated with this playlist."),
 	  G_CALLBACK(action_playlist_clear_queue) },
@@ -296,10 +300,6 @@
 	{ "playlist remove selected", GTK_STOCK_REMOVE, N_("Remove Selected"), "Delete", 
 	  N_("Remove selected entries from the playlist."),
 	  G_CALLBACK(action_playlist_remove_selected) },
-
-	{ "playlist remove all", GTK_STOCK_CLEAR, N_("Remove All"), NULL, 
-	  N_("Removes all entries from the playlist."),
-	  G_CALLBACK(action_playlist_remove_all) },
 };
 
 static GtkActionEntry action_entries_playlist_sort[] = {