diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-25 19:31:54 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-25 19:31:54 +0000 |
commit | b256de13e47ff731c99a940750bf440428577814 (patch) | |
tree | 1d85f3773535c2a27e35b7d2aedb82019b31bcc8 /iw | |
parent | cd2f5a889704ab197c5d44ee9bc81d7a78e60ab0 (diff) | |
download | anaconda-b256de13e47ff731c99a940750bf440428577814.tar.gz anaconda-b256de13e47ff731c99a940750bf440428577814.tar.xz anaconda-b256de13e47ff731c99a940750bf440428577814.zip |
more fixes.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/account.py | 4 | ||||
-rw-r--r-- | iw/keyboard.py | 6 | ||||
-rw-r--r-- | iw/rootpartition.py | 1 |
3 files changed, 8 insertions, 3 deletions
diff --git a/iw/account.py b/iw/account.py index 2bcccb4a6..693d32068 100644 --- a/iw/account.py +++ b/iw/account.py @@ -141,8 +141,8 @@ class AccountWindow (InstallWindow): self.confirm.connect ("activate", forward) self.confirm.set_visibility (FALSE) self.confirm.connect ("changed", self.rootPasswordsMatch) - table.attach (self.pw, 1, 2, 0, 1, FILL|EXPAND) - table.attach (self.confirm, 1, 2, 1, 2, FILL|EXPAND) + table.attach (self.pw, 1, 2, 0, 1, FILL|EXPAND, 5) + table.attach (self.confirm, 1, 2, 1, 2, FILL|EXPAND, 5) pw = self.todo.rootpassword.getPure() if pw: diff --git a/iw/keyboard.py b/iw/keyboard.py index 8bff500b2..8bdbfb6c3 100644 --- a/iw/keyboard.py +++ b/iw/keyboard.py @@ -19,9 +19,12 @@ class KeyboardWindow (InstallWindow): self.model = "pc101" self.layout = "en_US" self.variant = "" + self.hasrun = 0 def getNext (self): - self.todo.x.setKeyboard (self.rulesbase, self.model, self.layout, self.variant, "") + if self.hasrun: + self.todo.x.setKeyboard (self.rulesbase, self.model, + self.layout, self.variant, "") return None def select_row (self, clist, row, col, event): @@ -106,4 +109,5 @@ class KeyboardWindow (InstallWindow): box.pack_start (entry, FALSE) box.set_border_width (5) + self.hasrun = 1 return box diff --git a/iw/rootpartition.py b/iw/rootpartition.py index 7e7ba6a93..26acfb3c3 100644 --- a/iw/rootpartition.py +++ b/iw/rootpartition.py @@ -198,6 +198,7 @@ class AutoPartitionWindow(InstallWindow): box = GtkVBox (FALSE) box.pack_start(label, FALSE) + box.set_border_width (5) radioBox = GtkVBox (FALSE) self.continueChoice = GtkRadioButton (None, _("Remove data")) |