mailr13160 - /branches/gui_testing/gui/analyses/wizard.py


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

Header


Content

Posted by edward on June 22, 2011 - 12:21:
Author: bugman
Date: Wed Jun 22 12:21:11 2011
New Revision: 13160

URL: http://svn.gna.org/viewcvs/relax?rev=13160&view=rev
Log:
The R1 and R2 analysis buttons in the new analysis wizard now display the new 
graphics.


Modified:
    branches/gui_testing/gui/analyses/wizard.py

Modified: branches/gui_testing/gui/analyses/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/wizard.py?rev=13160&r1=13159&r2=13160&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/wizard.py (original)
+++ branches/gui_testing/gui/analyses/wizard.py Wed Jun 22 12:21:11 2011
@@ -152,22 +152,22 @@
         sizer2 = wx.BoxSizer(wx.HORIZONTAL)
 
         # The NOE button.
-        self.button_noe = self.create_button(box=sizer1, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+'noe_150x150.png', tooltip="Steady-state NOE 
analysis", fn=self.select_noe)
+        self.button_noe = self.create_button(box=sizer1, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+"noe_150x150.png", tooltip="Steady-state NOE 
analysis", fn=self.select_noe)
 
         # The R1 button.
-        self.button_r1 = self.create_button(box=sizer1, size=size, 
bmp=paths.IMAGE_PATH+'sphere.jpg', tooltip="R1 relaxation curve-fitting 
analysis", fn=self.select_r1)
+        self.button_r1 = self.create_button(box=sizer1, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+"r1_150x150.png", tooltip="R1 relaxation 
curve-fitting analysis", fn=self.select_r1)
 
         # The R2 button.
-        self.button_r2 = self.create_button(box=sizer1, size=size, 
bmp=paths.IMAGE_PATH+'sphere.jpg', tooltip="R2 relaxation curve-fitting 
analysis", fn=self.select_r2)
+        self.button_r2 = self.create_button(box=sizer1, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+"r2_150x150.png", tooltip="R2 relaxation 
curve-fitting analysis", fn=self.select_r2)
 
         # Consistency testing.
-        self.button_consist_test = self.create_button(box=sizer2, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+'consistency_testing_150x70.png', 
tooltip="Relaxation data consistency testing", fn=self.select_consist_test, 
disabled=True)
+        self.button_consist_test = self.create_button(box=sizer2, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+"consistency_testing_150x70.png", 
tooltip="Relaxation data consistency testing", fn=self.select_consist_test, 
disabled=True)
 
         # The model-free button.
-        self.button_mf = self.create_button(box=sizer2, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+'model_free'+sep+'model_free_150x150.png', 
tooltip="Model-free analysis", fn=self.select_mf)
+        self.button_mf = self.create_button(box=sizer2, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+"model_free"+sep+"model_free_150x150.png", 
tooltip="Model-free analysis", fn=self.select_mf)
 
         # The custom analysis button.
-        self.button_custom = self.create_button(box=sizer2, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+'custom_150x150.png', tooltip="Custom 
analysis", fn=self.select_custom, disabled=True)
+        self.button_custom = self.create_button(box=sizer2, size=size, 
bmp=paths.ANALYSIS_IMAGE_PATH+"custom_150x150.png", tooltip="Custom 
analysis", fn=self.select_custom, disabled=True)
 
         # Add the sizers.
         box.Add(sizer1, 0, wx.ALIGN_CENTER_HORIZONTAL, 0)




Related Messages


Powered by MHonArc, Updated Wed Jun 22 15:20:02 2011