Modified:
trunk/SDK/PyFR/WaitController.py
Log:
For some reason the waitDone method was removed. I probably did it to
myself. Not surprising.
Modified: trunk/SDK/PyFR/WaitController.py
==============================================================================
--- trunk/SDK/PyFR/WaitController.py (original)
+++ trunk/SDK/PyFR/WaitController.py Sat Jan 26 13:24:34 2008
@@ -8,6 +8,7 @@
# correctly for some reason. Movin this to the util class will not work.
launchedAppTick_ = objc.selector( ControllerUtilities.launchedAppTick_,
signature="v@:@")
+ firedMethod_ = objc.selector( ControllerUtilities.firedMethod_, signature="v@:@")
def __setupText(self, text):
@@ -58,11 +59,13 @@
BRController.wasPushed(self)
self.PyFR_start()
- self.removeAllControls()
def PyFR_start(self):
# This should get overridden
pass
+
+ def AboutToHideFR(self):
+ self.removeAllControls()
def waitDone(self):
self.stack().popController()