mailr14588 - /1.3/gui/analyses/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 September 05, 2011 - 18:06:
Author: bugman
Date: Mon Sep  5 18:06:20 2011
New Revision: 14588

URL: http://svn.gna.org/viewcvs/relax?rev=14588&view=rev
Log:
Fix for the Rx peak list wizard for Mac OS X.

The combobox SetValue() call has been replaced with SetStringSelection().


Modified:
    1.3/gui/analyses/auto_rx_base.py

Modified: 1.3/gui/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/analyses/auto_rx_base.py?rev=14588&r1=14587&r2=14588&view=diff
==============================================================================
--- 1.3/gui/analyses/auto_rx_base.py (original)
+++ 1.3/gui/analyses/auto_rx_base.py Mon Sep  5 18:06:20 2011
@@ -462,7 +462,7 @@
 
         # Set the ID in the spectrum.replicated page.
         page = self.wizard.get_page(self.page_indices['pts'])
-        page.spectrum_id_boxes[0].SetValue(str_to_gui(id))
+        page.spectrum_id_boxes[0].SetStringSelection(str_to_gui(id))
 
 
     def wizard_update_repl(self):
@@ -476,7 +476,7 @@
 
         # Set the ID in the spectrum.replicated page.
         page = self.wizard.get_page(self.page_indices['repl'])
-        page.spectrum_id_boxes[0].SetValue(str_to_gui(id))
+        page.spectrum_id_boxes[0].SetStringSelection(str_to_gui(id))
 
 
     def wizard_update_rmsd(self):
@@ -490,7 +490,7 @@
 
         # Set the ID in the spectrum.baseplane_rmsd page.
         page = self.wizard.get_page(self.page_indices['rmsd'])
-        page.spectrum_id.SetValue(str_to_gui(id))
+        page.spectrum_id.SetStringSelection(str_to_gui(id))
 
 
     def wizard_update_relax_time(self):
@@ -504,7 +504,7 @@
 
         # Set the ID in the relax_fit.relax_time page.
         page = self.wizard.get_page(self.page_indices['relax_time'])
-        page.spectrum_id.SetValue(str_to_gui(id))
+        page.spectrum_id.SetStringSelection(str_to_gui(id))
 
 
 




Related Messages


Powered by MHonArc, Updated Mon Sep 05 18:40:02 2011