diff options
author | bfox <bfox> | 2000-12-08 19:45:39 +0000 |
---|---|---|
committer | bfox <bfox> | 2000-12-08 19:45:39 +0000 |
commit | bba37fe20785155764df108c141d924d0a6155e9 (patch) | |
tree | 6892f2c0f50cd01ef7cd3117d355bb66d90747af /iw/xconfig_gui.py | |
parent | cda1d7b473fd9afd6243acf1ef7f0a0e52dbde9c (diff) | |
download | anaconda-bba37fe20785155764df108c141d924d0a6155e9.tar.gz anaconda-bba37fe20785155764df108c141d924d0a6155e9.tar.xz anaconda-bba37fe20785155764df108c141d924d0a6155e9.zip |
Fixed a bug in skipping X configuration
Diffstat (limited to 'iw/xconfig_gui.py')
-rw-r--r-- | iw/xconfig_gui.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py index 4457f8858..dc2496ac5 100644 --- a/iw/xconfig_gui.py +++ b/iw/xconfig_gui.py @@ -485,9 +485,6 @@ class MonitorWindow (InstallWindow): self.selectCb (ctree, node, -1) def getScreen (self): - #--If they want to skip X configuration, skip this screen - if self.todo.x.skip == 1: - return # Don't configure X in reconfig mode. # in regular install, check to see if the XFree86 package is @@ -501,6 +498,10 @@ class MonitorWindow (InstallWindow): else: self.skipme = FALSE + #--If they want to skip X configuration, skip this screen + if self.todo.x.skip == 1: + return + box = GtkVBox (FALSE, 5) |