mailr13314 - /branches/gui_testing/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 June 29, 2011 - 17:21:
Author: bugman
Date: Wed Jun 29 17:21:36 2011
New Revision: 13314

URL: http://svn.gna.org/viewcvs/relax?rev=13314&view=rev
Log:
Simplification of the threading setup in the Rx analyses.


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

Modified: branches/gui_testing/gui/analyses/auto_rx_base.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/analyses/auto_rx_base.py?rev=13314&r1=13313&r2=13314&view=diff
==============================================================================
--- branches/gui_testing/gui/analyses/auto_rx_base.py (original)
+++ branches/gui_testing/gui/analyses/auto_rx_base.py Wed Jun 29 17:21:36 2011
@@ -274,10 +274,8 @@
             thread = False
 
         # Start the thread.
-            self.thread = Execute_rx(self.gui, data, self.data_index, 
thread=False)
-        else:
-            self.thread = Execute_rx(self.gui, data, self.data_index)
-            self.thread.start()
+        self.thread = Execute_rx(self.gui, data, self.data_index, 
thread=thread)
+        self.thread.start()
 
 
     def load_sequence(self, event):




Related Messages


Powered by MHonArc, Updated Wed Jun 29 17:40:03 2011