[banshee] [SmartPlaylist.Editor] Fix button mix-up



commit 1d0800c12d6e13adece1a6c7975e4ccbf33a5044
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Sun Mar 21 19:03:56 2010 +0100

    [SmartPlaylist.Editor] Fix button mix-up
    
    The variable names for the "Open in editor" and "Create and save"
    buttons got mixed up during the migration from glade.

 .../Banshee.SmartPlaylist.Gui/Editor.cs            |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs b/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs
index 55b9d02..be485db 100644
--- a/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.SmartPlaylist.Gui/Editor.cs
@@ -116,8 +116,8 @@ namespace Banshee.SmartPlaylist
                 Spacing = 2,
                 LayoutStyle = ButtonBoxStyle.Start
             };
-            button_box.PackStart (adv_add_button = new Button (Catalog.GetString ("Open in editor")), false, false, 0);
-            button_box.PackStart (adv_use_button = new Button (Catalog.GetString ("Create and save")), false, false, 0);
+            button_box.PackStart (adv_use_button = new Button (Catalog.GetString ("Open in editor")), false, false, 0);
+            button_box.PackStart (adv_add_button = new Button (Catalog.GetString ("Create and save")), false, false, 0);
 
             scrolled_window.Add (adv_tree_view = new TreeView () {
                 HeightRequest = 150,



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