mailr13831 - in /branches/gui_testing/gui/analyses: auto_model_free.py auto_noe.py auto_rx_base.py


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

Header


Content

Posted by edward on July 22, 2011 - 13:27:
Author: bugman
Date: Fri Jul 22 13:27:28 2011
New Revision: 13831

URL: http://svn.gna.org/viewcvs/relax?rev=13831&view=rev
Log:
Spacing improvements in all the auto-analysis GUI elements.


Modified:
    branches/gui_testing/gui/analyses/auto_model_free.py
    branches/gui_testing/gui/analyses/auto_noe.py
    branches/gui_testing/gui/analyses/auto_rx_base.py

Modified: branches/gui_testing/gui/analyses/auto_model_free.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_model_free.py?rev=13831&r1=13830&r2=13831&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_model_free.py (original)
+++ branches/gui_testing/gui/analyses/auto_model_free.py Fri Jul 22 13:27:28 
2011
@@ -383,7 +383,6 @@
 
         # A button sizer, with some initial spacing.
         button_sizer = wx.BoxSizer(wx.HORIZONTAL)
-        button_sizer.AddSpacer(10)
 
         # An about button.
         button = wx.lib.buttons.ThemedGenBitmapTextButton(self, -1, None, 
"About")
@@ -401,9 +400,6 @@
         button_sizer.Add(button, 0, 0, 0)
         left_box.Add(button_sizer, 0, wx.ALL, 0)
 
-        # Bottom spacer.
-        left_box.AddSpacer(10)
-
         # Return the packed box.
         return left_box
 
@@ -446,7 +442,8 @@
         # Add maximum iteration selector.
         self.max_iter = self.add_spin_element(box, self, text="Maximum 
interations", default=str(self.data.max_iter), min=25, max=100)
 
-        # Some spacing.
+        # Stretchable spacing (with a minimal space).
+        box.AddSpacer(30)
         box.AddStretchSpacer()
 
         # Add the execution GUI element.

Modified: branches/gui_testing/gui/analyses/auto_noe.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_noe.py?rev=13831&r1=13830&r2=13831&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_noe.py (original)
+++ branches/gui_testing/gui/analyses/auto_noe.py Fri Jul 22 13:27:28 2011
@@ -181,7 +181,8 @@
         box.AddSpacer(40)
         self.peak_intensity = Spectra_list(gui=self.gui, parent=self, 
box=box, id=str(self.data_index), fn_add=self.peak_wizard)
 
-        # Stretchable spacing.
+        # Stretchable spacing (with a minimal space).
+        box.AddSpacer(30)
         box.AddStretchSpacer()
 
         # Add the execution GUI element.

Modified: branches/gui_testing/gui/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_rx_base.py?rev=13831&r1=13830&r2=13831&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_rx_base.py (original)
+++ branches/gui_testing/gui/analyses/auto_rx_base.py Fri Jul 22 13:27:28 2011
@@ -195,8 +195,8 @@
         self.grid_inc = self.add_spin_element(box, self, text="Grid search 
increments:", default=11, min=1, max=100, tooltip="This is the number of 
increments per dimension of the grid search performed prior to numerical 
optimisation.")
         self.mc_sim_num = self.add_spin_element(box, self, text="Monte Carlo 
simulation number:", default=500, min=1, max=100000, tooltip="This is the 
number of Monte Carlo simulations performed for error propagation and 
analysis.")
 
-        # Stretchable spacing (with minimal spacing).
-        box.AddSpacer(10)
+        # Stretchable spacing (with a minimal space).
+        box.AddSpacer(30)
         box.AddStretchSpacer()
 
         # Add the execution GUI element.




Related Messages


Powered by MHonArc, Updated Fri Jul 22 13:40:03 2011