[banshee/gtk3] Nereid: Prevent the header table from expanding vertically



commit 0d5d711b39347e5b89ea73a1653f74508db8205f
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date:   Wed Jul 27 19:29:27 2011 +0200

    Nereid: Prevent the header table from expanding vertically
    
    In GTK 3, containers now inherit the expanding behaviour of their child.
    So we need to explicitly tell the header table to not expand vertically,
    so that it doesn't take half of the window.

 src/Clients/Nereid/Nereid/PlayerInterface.cs |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/src/Clients/Nereid/Nereid/PlayerInterface.cs b/src/Clients/Nereid/Nereid/PlayerInterface.cs
index a48ac37..755347b 100644
--- a/src/Clients/Nereid/Nereid/PlayerInterface.cs
+++ b/src/Clients/Nereid/Nereid/PlayerInterface.cs
@@ -189,6 +189,7 @@ namespace Nereid
         {
             header_table = new Table (2, 2, false);
             header_table.Show ();
+            header_table.Vexpand = false;
             primary_vbox.PackStart (header_table, false, false, 0);
 
             main_menu = new MainMenu ();



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