diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-18 23:33:50 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-18 23:33:50 +0000 |
commit | ec8550a17dcddd770bb1bddfc68bdc80d483b109 (patch) | |
tree | de0821b3cfd9541b45b6f9c0594a794c820c8eb1 /iw/installpath.py | |
parent | bb99c1d3c10e7af47f18e3775dec95db33aa9c10 (diff) | |
download | anaconda-ec8550a17dcddd770bb1bddfc68bdc80d483b109.tar.gz anaconda-ec8550a17dcddd770bb1bddfc68bdc80d483b109.tar.xz anaconda-ec8550a17dcddd770bb1bddfc68bdc80d483b109.zip |
more changes
Diffstat (limited to 'iw/installpath.py')
-rw-r--r-- | iw/installpath.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/iw/installpath.py b/iw/installpath.py index 091200587..bbbb7a569 100644 --- a/iw/installpath.py +++ b/iw/installpath.py @@ -184,10 +184,14 @@ class InstallPathWindow (InstallWindow): box.pack_start(table, FALSE) if self.todo.expert: - InstallPathWindow.fdisk = GtkCheckButton (_("Use fdisk to format drives")) - line = GtkHSeparator () - box.pack_start (line, FALSE) - box.pack_start (InstallPathWindow.fdisk, FALSE) + hbox = GtkHBox (FALSE) + InstallPathWindow.fdisk = GtkCheckButton (_("Use fdisk")) + align = GtkAlignment () + align.add (InstallPathWindow.fdisk) + align.set (0.0, 0.0, 0.0, 0.0) + hbox.pack_start (box, TRUE) + hbox.pack_start (align, FALSE) + box = hbox else: InstallPathWindow.fdisk = None |