mailr10456 - /branches/bieri_gui/gui_bieri/relax_gui.py


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

Header


Content

Posted by edward on January 27, 2010 - 22:54:
Author: bugman
Date: Wed Jan 27 22:54:05 2010
New Revision: 10456

URL: http://svn.gna.org/viewcvs/relax?rev=10456&view=rev
Log:
Fixes for the state_load() method to make it functional.


Modified:
    branches/bieri_gui/gui_bieri/relax_gui.py

Modified: branches/bieri_gui/gui_bieri/relax_gui.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/relax_gui.py?rev=10456&r1=10455&r2=10456&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/relax_gui.py (original)
+++ branches/bieri_gui/gui_bieri/relax_gui.py Wed Jan 27 22:54:05 2010
@@ -2590,12 +2590,14 @@
         # Update the core of the GUI to match the new data store.
         self.sync_ds(upload=False)
 
-        # Build and upload the data to the analysis frames.
-        for i in range(len(ds.relax_gui.analyses)):
-            # Build the frame.
-            analysis = self.create_frame(i)
-
-            # Execute the analysis frame specific update methods.
+        # Build the analysis frames (commented out until analyses are 
dynamically loaded and unloaded).
+        #for i in range(len(ds.relax_gui.analyses)):
+        #    # The automatic model-free protocol frame
+        #    if ds.relax_gui.analyses[i].type = 'model-free':
+        #        self.analysis_frames.append(Auto_model_free(self))
+
+        # Execute the analysis frame specific update methods.
+        for analysis in self.analysis_frames:
             analysis.sync_ds(upload=False)
 
         # Skip the event.




Related Messages


Powered by MHonArc, Updated Wed Jan 27 23:00:02 2010