[banshee] ThickClient: move RescanAction's ActionEntry some positions down



commit e0c7dde0f82cc1f9783203f9fb76cfb7f79cd142
Author: Andres G. Aragoneses <knocte gmail com>
Date:   Thu Oct 4 00:03:36 2012 +0100

    ThickClient: move RescanAction's ActionEntry some positions down
    
    The ActionEntry objects were being created in order following the same
    layout as the toplevel menus, but the RescanAction code was not properly
    placed below the ToolsMenuAction.
    
    There is no change of behaviour in this commit.

 .../Banshee.Gui/GlobalActions.cs                   |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/Core/Banshee.ThickClient/Banshee.Gui/GlobalActions.cs b/src/Core/Banshee.ThickClient/Banshee.Gui/GlobalActions.cs
index 48d10bc..373da2e 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Gui/GlobalActions.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Gui/GlobalActions.cs
@@ -57,12 +57,6 @@ namespace Banshee.Gui
                     Catalog.GetString ("Import _Playlist..."), null,
                     Catalog.GetString ("Import a playlist"), OnImportPlaylist),
 
-                new ActionEntry ("RescanAction", null,
-                    Catalog.GetString ("Rescan Music Library"), null,
-                    Catalog.GetString ("Rescan the Music Library folder"), delegate {
-                        new Banshee.Collection.RescanPipeline (ServiceManager.SourceManager.MusicLibrary);
-                    }),
-
                 new ActionEntry ("OpenLocationAction", null,
                     Catalog.GetString ("Open _Location..."), "<control>L",
                     Catalog.GetString ("Open a remote location for playback"), OnOpenLocation),
@@ -83,6 +77,12 @@ namespace Banshee.Gui
                 new ActionEntry ("ToolsMenuAction", null,
                     Catalog.GetString ("_Tools"), null, null, null),
 
+                new ActionEntry ("RescanAction", null,
+                                 Catalog.GetString ("Rescan Music Library"), null,
+                                 Catalog.GetString ("Rescan the Music Library folder"), delegate {
+                    new Banshee.Collection.RescanPipeline (ServiceManager.SourceManager.MusicLibrary);
+                }),
+
                 // Help Menu
                 new ActionEntry ("HelpMenuAction", null,
                     Catalog.GetString ("_Help"), null, null, null),



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]