[gnome-system-tools] Don't limit users list's width request



commit bfb92192a604ad97740898e302736b5eca65a68f
Author: Milan Bouchet-Valat <nalimilan club fr>
Date:   Sun Apr 25 19:58:05 2010 +0200

    Don't limit users list's width request
    
    The VBox width request was set to 200 to keep it from being either to wide or not enough (to enable ellipsizing). But this was preventing the buttons from growing when their labels needed to: result was that at high font size and with some languages, the text was getting out of the buttons.
    
    Setting the width request for the ScrolledWindow of the users list fixes the problem, letting the button grow as they want.

 interfaces/users.ui |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/interfaces/users.ui b/interfaces/users.ui
index a64844b..92b7be1 100644
--- a/interfaces/users.ui
+++ b/interfaces/users.ui
@@ -81,12 +81,12 @@
         <property name="spacing">18</property>
         <child>
           <object class="GtkVBox" id="vbox2">
-            <property name="width_request">200</property>
             <property name="visible">True</property>
             <property name="orientation">vertical</property>
             <property name="spacing">6</property>
             <child>
               <object class="GtkScrolledWindow" id="users_table_sw">
+                <property name="width_request">200</property>
                 <property name="visible">True</property>
                 <property name="can_focus">True</property>
                 <property name="hscrollbar_policy">never</property>



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