mailr12865 - /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 michael . bieri on June 07, 2011 - 02:53:
Author: michaelbieri
Date: Tue Jun  7 02:53:18 2011
New Revision: 12865

URL: http://svn.gna.org/viewcvs/relax?rev=12865&view=rev
Log:
Removed event.skip due to conflict with Windows.

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=12865&r1=12864&r2=12865&view=diff
==============================================================================
--- 1.3/gui/analyses/auto_rx_base.py (original)
+++ 1.3/gui/analyses/auto_rx_base.py Tue Jun  7 02:53:18 2011
@@ -176,7 +176,7 @@
             add_vd = wx.Button(self.parent, -1, "+VD")
             add_vd.SetToolTipString("Add VD (variable delay) list to 
automatically fill in R1 relaxation times.")
             add_vd.SetMinSize((50, 50))
-            self.gui.Bind(wx.EVT_BUTTON, self.load_peaklist, add_vd)
+            self.gui.Bind(wx.EVT_BUTTON, self.load_vd, add_vd)
             button_sizer.Add(add_vd, 0, wx.ADJUST_MINSIZE, 0)
 
         # Pack buttons
@@ -472,7 +472,6 @@
         status = Status()
         if status.exec_lock.locked():
             error_message("relax is currently executing.", "relax execution 
lock")
-            event.Skip()
             return
 
         # Synchronise the frame data to the relax data store.
@@ -487,9 +486,6 @@
             self.execute_thread('dummy')
         else:
             id = thread.start_new_thread(self.execute_thread, ('dummy',))
-
-        # Terminate the event.
-        event.Skip()
 
 
     def execute_thread(self, dummy_string):
@@ -604,9 +600,6 @@
         # Sync.
         self.sync_ds(upload=False)
 
-        # Terminate the event.
-        event.Skip()
-
 
     def results_directory(self, event):
         """The results directory selection.
@@ -627,9 +620,6 @@
 
         # Place the path in the text box.
         self.field_results_dir.SetValue(self.data.save_dir)
-
-        # Terminate the event.
-        event.Skip()
 
 
     def sync_ds(self, upload=False):




Related Messages


Powered by MHonArc, Updated Tue Jun 07 03:20:02 2011