From b79a8c289c88d943c6a86847a05ea9595ed743f0 Mon Sep 17 00:00:00 2001 From: pnfisher Date: Fri, 10 Sep 1999 00:41:03 +0000 Subject: (getNext): re-enable setting for bootdisk creation. --- iw/lilo.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/iw/lilo.py b/iw/lilo.py index 269106169..e0b6a3691 100644 --- a/iw/lilo.py +++ b/iw/lilo.py @@ -20,6 +20,11 @@ class LiloWindow (InstallWindow): self.type = None def getNext (self): + if self.bootdisk.get_active (): + self.todo.bootdisk = 1 + else: + self.todo.bootdisk = 0 + return if self.lilo.get_active (): self.todo.setLiloLocation (None) @@ -30,11 +35,6 @@ class LiloWindow (InstallWindow): else: self.todo.setLiloLocation ("partition") - if self.bootdisk.get_active (): - self.todo.bootdisk = 1 - else: - self.todo.bootdisk = 0 - self.todo.setLiloImages(self.images) def typeName(self, type): -- cgit