From e838240e7b4fb265b3bbf715d619f987d6c0d49f Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 30 May 2006 19:10:45 +0000 Subject: Set self.dir the right way so the back button works. --- dispatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dispatch.py') 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): -- cgit