mailr15728 - /1.3/gui/analyses/base.py


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

Header


Content

Posted by edward on April 16, 2012 - 15:45:
Author: bugman
Date: Mon Apr 16 15:45:31 2012
New Revision: 15728

URL: http://svn.gna.org/viewcvs/relax?rev=15728&view=rev
Log:
Fix for the radiobutton group in the Spectral_error_type_page of the peak 
intensity wizard.

The first element of a RadioButton group needs the wx.RB_GROUP style!


Modified:
    1.3/gui/analyses/base.py

Modified: 1.3/gui/analyses/base.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/analyses/base.py?rev=15728&r1=15727&r2=15728&view=diff
==============================================================================
--- 1.3/gui/analyses/base.py (original)
+++ 1.3/gui/analyses/base.py Mon Apr 16 15:45:31 2012
@@ -487,7 +487,7 @@
         sizer2.Add(sizer_radio, 1, wx.ALL|wx.EXPAND, 0)
 
         # The RMSD radio button.
-        self.radio_rmsd = wx.RadioButton(self, -1, "Baseplane RMSD.")
+        self.radio_rmsd = wx.RadioButton(self, -1, "Baseplane RMSD.", 
style=wx.RB_GROUP)
         sizer_radio.Add(self.radio_rmsd, 0, 
wx.LEFT|wx.ALIGN_CENTER_VERTICAL, 0)
 
         # Spacing.




Related Messages


Powered by MHonArc, Updated Mon Apr 16 16:20:01 2012