summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-01-08 23:51:15 +0000
committerMike Fulbright <msf@redhat.com>2001-01-08 23:51:15 +0000
commit5691c18b5d559d6cdf695ca376385007e574387e (patch)
tree194f3bd17d191a24f04c47e7687ba97986b56a02 /gui.py
parent6f670ec8ae8d1a246c66954100236c90e23ea96c (diff)
downloadanaconda-5691c18b5d559d6cdf695ca376385007e574387e.tar.gz
anaconda-5691c18b5d559d6cdf695ca376385007e574387e.tar.xz
anaconda-5691c18b5d559d6cdf695ca376385007e574387e.zip
Added support for LBA32 when we right out lilo.conf iff we need it because boot partition is over 1023 cyl. Also added warning if you put boot > 1023 cyl and we dont seem to be able to detect edd support on this system
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index b6d8b0249..20168e53d 100755
--- a/gui.py
+++ b/gui.py
@@ -442,11 +442,13 @@ class InstallControlWindow:
self.stateListIndex = pos
def prevClicked (self, *args):
- self.currentScreen.getPrev ()
+ prev = self.currentScreen.getPrev ()
self.prevList.pop ()
(self.currentScreen, self.stateListIndex) = self.prevList[-1]
+
self.setScreen (self.currentScreen, self.prevClicked)
+
def nextClicked (self, *args):
next = self.currentScreen.getNext ()
if next: