banshee r3159 - in trunk/banshee: . src/Core/Nereid/Nereid



Author: gburt
Date: Thu Feb  7 01:16:23 2008
New Revision: 3159
URL: http://svn.gnome.org/viewvc/banshee?rev=3159&view=rev

Log:
2008-02-06  Gabriel Burt  <gabriel burt gmail com>

	* src/Core/Nereid/Nereid/PlayerInterface.cs: Patch from Alex Hixon adding
	the track properties button to the bottom bar.  Tweaked to be not quite as
	tall.


Modified:
   trunk/banshee/ChangeLog
   trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs

Modified: trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs
==============================================================================
--- trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs	(original)
+++ trunk/banshee/src/Core/Nereid/Nereid/PlayerInterface.cs	Thu Feb  7 01:16:23 2008
@@ -201,14 +201,20 @@
             status_label.ModifyFg (StateType.Normal, Hyena.Gui.GtkUtilities.ColorBlend (
                 status_label.Style.Foreground (StateType.Normal), status_label.Style.Background (StateType.Normal)));
             
+            ActionButton song_properties_button = new ActionButton
+                (action_service.TrackActions["TrackPropertiesAction"]);
+            song_properties_button.IconSize = IconSize.Menu;
+            song_properties_button.Padding = 0;
+            song_properties_button.LabelVisible = false;
+            
             //footer_box.PackStart (shuffle_toggle_button, false, false, 0);
             //footer_box.PackStart (repeat_toggle_button, false, false, 0);
             footer_box.PackStart (status_label, true, true, 0);
-            //footer_box.PackStart (song_properties_button, false, false, 0);
+            footer_box.PackStart (song_properties_button, false, false, 0);
 
             Alignment align = new Alignment (0.5f, 0.5f, 1.0f, 1.0f);
-            align.TopPadding = 6;
-            align.BottomPadding = 5;
+            align.TopPadding = 2;
+            align.BottomPadding = 0;
             align.Add (footer_box);
             align.ShowAll ();
 



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