summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-05-30 19:10:45 +0000
committerChris Lumens <clumens@redhat.com>2006-05-30 19:10:45 +0000
commite838240e7b4fb265b3bbf715d619f987d6c0d49f (patch)
tree5e0481054975469e13e480365dc0c3f95613c7e0 /dispatch.py
parentbdea721c83e2eb22cb50a1f9175e01bad37d7b84 (diff)
downloadanaconda-e838240e7b4fb265b3bbf715d619f987d6c0d49f.tar.gz
anaconda-e838240e7b4fb265b3bbf715d619f987d6c0d49f.tar.xz
anaconda-e838240e7b4fb265b3bbf715d619f987d6c0d49f.zip
Set self.dir the right way so the back button works.
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dispatch.py b/dispatch.py
index 43a85975c..58727df16 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -114,11 +114,11 @@ installSteps = [
class Dispatcher:
def gotoPrev(self):
- self.dir = DISPATCH_BACK
+ self._setDir(DISPATCH_BACK)
self.moveStep()
def gotoNext(self):
- self.dir = DISPATCH_FORWARD
+ self._setDir(DISPATCH_FORWARD)
self.moveStep()
def canGoBack(self):