[banshee] [Banshee.Moblin] Rearrange some bits on the side



commit bfce7cf960ae66b13c85bf3ae2df8dd6a078dbe8
Author: Aaron Bockover <abockover novell com>
Date:   Thu Oct 15 05:47:01 2009 -0400

    [Banshee.Moblin] Rearrange some bits on the side

 .../Banshee.Moblin/Banshee.Moblin/PlayQueueBox.cs  |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)
---
diff --git a/src/Extensions/Banshee.Moblin/Banshee.Moblin/PlayQueueBox.cs b/src/Extensions/Banshee.Moblin/Banshee.Moblin/PlayQueueBox.cs
index 9b85f34..7a90402 100644
--- a/src/Extensions/Banshee.Moblin/Banshee.Moblin/PlayQueueBox.cs
+++ b/src/Extensions/Banshee.Moblin/Banshee.Moblin/PlayQueueBox.cs
@@ -26,6 +26,7 @@
 
 using System;
 using Gtk;
+using Mono.Unix;
 
 using Hyena.Data.Gui;
 using Banshee.Collection.Gui;
@@ -46,18 +47,24 @@ namespace Banshee.Moblin
             
             FindPlayQueue ();
             
-            PackStart (new PlaybackBox (), false, false, 0);
+            PackStart (new Label () {
+                Markup = String.Format ("<b><big>{0}</big></b>", 
+                    GLib.Markup.EscapeText (Catalog.GetString ("Play Queue"))),
+                Xalign = 0.0f
+            }, false, false, 0);
             
-            PackStart (new MoblinTrackInfoDisplay () {
-                HeightRequest = 64
-            }, false, false, 10);
+            PackStart (new PlaybackBox (), false, false, 0);
             
-            PackEnd (new Hyena.Widgets.ScrolledWindow () {
+            PackStart (new Hyena.Widgets.ScrolledWindow () {
                 (playqueue_view = new TerseTrackListView () {
                     HasFocus = true
                 })
             }, true, true, 0);
             
+            PackStart (new MoblinTrackInfoDisplay () {
+                HeightRequest = 64
+            }, false, false, 10);
+            
             playqueue_view.ColumnController.Insert (new Column (null, "indicator",
                 new ColumnCellStatusIndicator (null), 0.05, true, 20, 20), 0);
             playqueue_view.ColumnController.Add (new Column ("Rating", new ColumnCellRating ("Rating", false), 0.15));



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