summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-10-22 18:54:46 +0000
committerMatt Wilson <msw@redhat.com>1999-10-22 18:54:46 +0000
commita29f74c35f97793fe68ce93387a97051890243b4 (patch)
treeba9f86a42b353caee75019b80f5e79272f155bf0 /iw
parent36f27febaf73fb1ba2e750d1352116cc1e9d3720 (diff)
downloadanaconda-a29f74c35f97793fe68ce93387a97051890243b4.tar.gz
anaconda-a29f74c35f97793fe68ce93387a97051890243b4.tar.xz
anaconda-a29f74c35f97793fe68ce93387a97051890243b4.zip
merge from 6.1 branch
Diffstat (limited to 'iw')
-rw-r--r--iw/xconfig.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py
index ef6f73c88..36658157a 100644
--- a/iw/xconfig.py
+++ b/iw/xconfig.py
@@ -124,9 +124,6 @@ class XConfigWindow (InstallWindow):
setting = self.monlist.get_row_data (row)
self.todo.x.setMonitor (setting)
- if not self.sunServer:
- if self.custom.get_active () and not self.skip.get_active ():
- return XCustomWindow
if not self.skip.get_active ():
if self.xdm.get_active ():
self.todo.initlevel = 5
@@ -134,6 +131,11 @@ class XConfigWindow (InstallWindow):
self.todo.initlevel = 3
else:
self.todo.initlevel = 3
+
+ if not self.sunServer:
+ if self.custom.get_active () and not self.skip.get_active ():
+ return XCustomWindow
+
return None
def customToggled (self, widget, *args):