mailr14722 - /1.3/gui/spin_viewer/frame.py


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

Header


Content

Posted by edward on September 21, 2011 - 11:14:
Author: bugman
Date: Wed Sep 21 11:14:54 2011
New Revision: 14722

URL: http://svn.gna.org/viewcvs/relax?rev=14722&view=rev
Log:
The spin loader toolbar button in the spin viewer window is now properly 
disabled with the exec lock.


Modified:
    1.3/gui/spin_viewer/frame.py

Modified: 1.3/gui/spin_viewer/frame.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/spin_viewer/frame.py?rev=14722&r1=14721&r2=14722&view=diff
==============================================================================
--- 1.3/gui/spin_viewer/frame.py (original)
+++ 1.3/gui/spin_viewer/frame.py Wed Sep 21 11:14:54 2011
@@ -99,7 +99,7 @@
                 item.Enable(enable)
 
         # The spin loader.
-        self.spin_loader_button.Enable(enable)
+        self.bar.EnableTool(self.spin_loader_id, enable)
 
         # The pipe selector.
         self.pipe_name.Enable(enable)
@@ -268,9 +268,9 @@
         self.bar = self.CreateToolBar(wx.TB_HORIZONTAL|wx.TB_FLAT)
 
         # The spin loading button.
-        id = wx.NewId()
-        self.spin_loader_button = self.bar.AddLabelTool(id, "Load spins", 
wx.Bitmap(icon_32x32.spin, wx.BITMAP_TYPE_ANY), shortHelp="Load spins", 
longHelp="Load spins from either a sequence file or from a 3D structure file")
-        self.Bind(wx.EVT_TOOL, self.load_spins_wizard, id=id)
+        self.spin_loader_id = wx.NewId()
+        self.bar.AddLabelTool(self.spin_loader_id, "Load spins", 
wx.Bitmap(icon_32x32.spin, wx.BITMAP_TYPE_ANY), 
bmpDisabled=wx.Bitmap(icon_32x32.spin_grey, wx.BITMAP_TYPE_ANY), 
shortHelp="Load spins", longHelp="Load spins from either a sequence file or 
from a 3D structure file")
+        self.Bind(wx.EVT_TOOL, self.load_spins_wizard, 
id=self.spin_loader_id)
 
         # A separator.
         self.bar.AddSeparator()




Related Messages


Powered by MHonArc, Updated Wed Sep 21 11:40:01 2011