mailr16786 - /branches/uf_redesign/gui/uf_objects.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on June 08, 2012 - 18:06:
Author: bugman
Date: Fri Jun  8 18:06:52 2012
New Revision: 16786

URL: http://svn.gna.org/viewcvs/relax?rev=16786&view=rev
Log:
Spacing fixes for the GUI user function descriptions (for both the theory and 
practice).


Modified:
    branches/uf_redesign/gui/uf_objects.py

Modified: branches/uf_redesign/gui/uf_objects.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/uf_redesign/gui/uf_objects.py?rev=16786&r1=16785&r2=16786&view=diff
==============================================================================
--- branches/uf_redesign/gui/uf_objects.py (original)
+++ branches/uf_redesign/gui/uf_objects.py Fri Jun  8 18:06:52 2012
@@ -823,6 +823,12 @@
         text_elements.append(text)
         text_types.append('title')
 
+        # The text size, then spacing after the title.
+        x, y = text.GetSizeTuple()
+        tot_x += x
+        tot_y += y
+        tot_y += spacing
+
         # The synopsis.
         if self.uf_data.title:
             # The text.
@@ -837,7 +843,7 @@
             tot_y += y
 
             # The spacing after the element.
-            tot_y += spacing * 1.5
+            tot_y += spacing
 
             # Append the text objects.
             text_elements.append(text)
@@ -906,9 +912,9 @@
                     # The spacing after each element.
                     tot_y += spacing
 
-                    # The double spacing before each section (not including 
the first).
+                    # The 1.5 spacing before each section (not including the 
first).
                     if i != 0 and type == 'title':
-                        tot_y += spacing * 2
+                        tot_y += spacing
 
                     # Append the text objects.
                     text_elements.append(text)
@@ -931,9 +937,9 @@
 
         # Add the text.
         for i in range(len(text_elements)):
-            # Double spacing before each section (not including the first).
+            # Spacing before each section (not including the first).
             if i > 1 and text_types[i] == 'title':
-                panel_sizer.AddSpacer(spacing * 2)
+                panel_sizer.AddSpacer(spacing)
 
             # The text.
             panel_sizer.Add(text_elements[i], 0, wx.ALIGN_LEFT, 0)




Related Messages


Powered by MHonArc, Updated Fri Jun 08 18:40:02 2012