mailr13680 - /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 July 18, 2011 - 12:08:
Author: bugman
Date: Mon Jul 18 12:08:22 2011
New Revision: 13680

URL: http://svn.gna.org/viewcvs/relax?rev=13680&view=rev
Log:
Fix for the page skipping functionality in the wizard - all pages were being 
skipped!!!


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=13680&r1=13679&r2=13680&view=diff
==============================================================================
--- branches/gui_testing/gui/wizard.py (original)
+++ branches/gui_testing/gui/wizard.py Mon Jul 18 12:08:22 2011
@@ -1174,7 +1174,7 @@
         """
 
         # Operations for non-skipped pages.
-        if not self._skip_flag:
+        if not self._skip_flag[self._current_page]:
             # Execute the page's on_next() method.
             self._pages[self._current_page].on_next()
 




Related Messages


Powered by MHonArc, Updated Mon Jul 18 12:20:02 2011