summaryrefslogtreecommitdiffstats
path: root/iw/xconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'iw/xconfig.py')
-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):