summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-12-16 20:47:43 +0000
committerErik Troan <ewt@redhat.com>1999-12-16 20:47:43 +0000
commitceae8d6f0788e37a392d1c595259c5289b7202c5 (patch)
treebb8d7dbc774867687839ab6d3af071c2e21b1c68 /iw
parentfd5264b5d48f69447b13053cd6e3f8244c2b48fe (diff)
downloadanaconda-ceae8d6f0788e37a392d1c595259c5289b7202c5.tar.gz
anaconda-ceae8d6f0788e37a392d1c595259c5289b7202c5.tar.xz
anaconda-ceae8d6f0788e37a392d1c595259c5289b7202c5.zip
expert mode enables lilo screens in workstation/server installs
Diffstat (limited to 'iw')
-rw-r--r--iw/installpath.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/iw/installpath.py b/iw/installpath.py
index 26697d72a..3f9930195 100644
--- a/iw/installpath.py
+++ b/iw/installpath.py
@@ -121,14 +121,14 @@ class InstallPathWindow (InstallWindow):
break
if type == WORKSTATION_GNOME and self.orig != WORKSTATION_GNOME:
- self.todo.setClass (installclass.GNOMEWorkstation ())
+ self.todo.setClass (installclass.GNOMEWorkstation (self.todo.expert))
elif type == WORKSTATION_KDE and self.orig != WORKSTATION_KDE:
- self.todo.setClass (installclass.KDEWorkstation ())
+ self.todo.setClass (installclass.KDEWorkstation (self.todo.expert))
elif type == SERVER and self.orig != SERVER:
print "SERVER"
- self.todo.setClass (installclass.Server ())
+ self.todo.setClass (installclass.Server (self.todo.expert))
elif type == CUSTOM and self.orig != CUSTOM:
- self.todo.setClass (installclass.CustomInstall ())
+ self.todo.setClass (installclass.CustomInstall (self.todo.expert))
def toggled (self, widget, type):
if not widget.get_active (): return