mailr13083 - /branches/gui_testing/gui/wizard.py


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

Header


Content

Posted by edward on June 17, 2011 - 10:49:
Author: bugman
Date: Fri Jun 17 10:49:12 2011
New Revision: 13083

URL: http://svn.gna.org/viewcvs/relax?rev=13083&view=rev
Log:
The dialog ShowModal() and Destroy() methods are now executed by the wizard 
run() method.


Modified:
    branches/gui_testing/gui/wizard.py

Modified: branches/gui_testing/gui/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/wizard.py?rev=13083&r1=13082&r2=13083&view=diff
==============================================================================
--- branches/gui_testing/gui/wizard.py (original)
+++ branches/gui_testing/gui/wizard.py Fri Jun 17 10:49:12 2011
@@ -802,7 +802,13 @@
     def run(self):
         """Execute the wizard."""
 
+        # Show the wizard.
+        self.ShowModal()
+
         # Loop over the pages.
         for i in range(len(self.pages)):
             # Display the page.
             self.display_page(i)
+
+        # Destroy the wizard.
+        self.Destroy()




Related Messages


Powered by MHonArc, Updated Fri Jun 17 11:00:02 2011