diff options
author | Mike Fulbright <msf@redhat.com> | 1999-09-23 03:12:43 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 1999-09-23 03:12:43 +0000 |
commit | dcd6c0d9f85dbc2125a2c9e2218a8c74853f89e4 (patch) | |
tree | 1d24fc18d76e6f57ec6c252ae1562fa4e5c64231 /iw/xconfig.py | |
parent | 5782a8cb88ae0655cb3d6e4f9161642ab7bc4fc5 (diff) | |
download | anaconda-dcd6c0d9f85dbc2125a2c9e2218a8c74853f89e4.tar.gz anaconda-dcd6c0d9f85dbc2125a2c9e2218a8c74853f89e4.tar.xz anaconda-dcd6c0d9f85dbc2125a2c9e2218a8c74853f89e4.zip |
xconfig.py: Improved appearance of Monitor list by changing packing...
Dr Mike <drmike@redhat.com>
Diffstat (limited to 'iw/xconfig.py')
-rw-r--r-- | iw/xconfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py index 28890c165..56a9935a4 100644 --- a/iw/xconfig.py +++ b/iw/xconfig.py @@ -199,7 +199,7 @@ class XConfigWindow (InstallWindow): sw = GtkScrolledWindow () sw.add (self.monlist) sw.set_policy (POLICY_NEVER, POLICY_AUTOMATIC) - self.autoBox.pack_start (sw, TRUE) + self.autoBox.pack_start (sw, TRUE, TRUE) test = GtkAlignment () button = GtkButton (_("Test this configuration")) @@ -218,7 +218,7 @@ class XConfigWindow (InstallWindow): self.autoBox.pack_start (self.custom, FALSE) self.autoBox.pack_start (self.xdm, FALSE) - box.pack_start (self.autoBox, FALSE) + box.pack_start (self.autoBox, TRUE, TRUE) box.pack_start (self.skip, FALSE) self.skip.set_active (self.todo.x.skip) |