summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-10-04 17:12:15 +0000
committerJeremy Katz <katzj@redhat.com>2005-10-04 17:12:15 +0000
commit326cb7c0af9a100e9da71a22db1a0855852b4453 (patch)
tree5d1f72ae2514efb539bc503076a19ad9de22a73e
parent243178fb65effe1e7302baa0de308c52e1c8ca6f (diff)
downloadanaconda-326cb7c0af9a100e9da71a22db1a0855852b4453.tar.gz
anaconda-326cb7c0af9a100e9da71a22db1a0855852b4453.tar.xz
anaconda-326cb7c0af9a100e9da71a22db1a0855852b4453.zip
2005-10-04 Jeremy Katz <katzj@redhat.com>
* iw/autopart_type.py (PartitionTypeWindow.getNext): Skip bootloader screen if we're not reviewing/modifying partitioning (#169817)
-rw-r--r--ChangeLog4
-rw-r--r--iw/autopart_type.py6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 972c076d0..a47bce9dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-10-04 Jeremy Katz <katzj@redhat.com>
+ * iw/autopart_type.py (PartitionTypeWindow.getNext): Skip
+ bootloader screen if we're not reviewing/modifying
+ partitioning (#169817)
+
* installclass.py (BaseInstallClass.setSteps): Make non-existent
arch-specific step skipping permanent
diff --git a/iw/autopart_type.py b/iw/autopart_type.py
index f4587da04..7b64d8850 100644
--- a/iw/autopart_type.py
+++ b/iw/autopart_type.py
@@ -38,7 +38,8 @@ class PartitionTypeWindow(InstallWindow):
if val == -1:
self.dispatch.skipStep("autopartitionexecute", skip = 1)
- self.dispatch.skipStep("partition", skip = 0)
+ self.dispatch.skipStep("partition", skip = 0)
+ self.dispatch.skipStep("bootloader", skip = 0)
else:
self.dispatch.skipStep("autopartitionexecute", skip = 0)
@@ -63,8 +64,11 @@ class PartitionTypeWindow(InstallWindow):
if self.xml.get_widget("reviewButton").get_active():
self.dispatch.skipStep("partition", skip = 0)
+ self.dispatch.skipStep("bootloader", skip = 0)
else:
self.dispatch.skipStep("partition")
+ self.dispatch.skipStep("bootloader")
+ self.dispatch.skipStep("bootloaderadvanced")
return None