summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-20 07:38:04 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-20 07:38:04 +0000
commit5fb288835aa0edf41f2a98b4ae7a2de4d12f428a (patch)
tree6a0f1df331623e920010a02b06bd8286a94f8388 /iw
parent08a8c8aaa9fbfe9046b0a193da86d124ac665211 (diff)
downloadanaconda-5fb288835aa0edf41f2a98b4ae7a2de4d12f428a.tar.gz
anaconda-5fb288835aa0edf41f2a98b4ae7a2de4d12f428a.tar.xz
anaconda-5fb288835aa0edf41f2a98b4ae7a2de4d12f428a.zip
fix another case of button ordering
Diffstat (limited to 'iw')
-rw-r--r--iw/account_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/account_gui.py b/iw/account_gui.py
index a3101b1aa..b8e4b21a7 100644
--- a/iw/account_gui.py
+++ b/iw/account_gui.py
@@ -204,8 +204,8 @@ class AccountWindow (InstallWindow):
# if there is data there to edit
self.win = self.userWindow(title, 1)
- self.win.add_button('gtk-ok', 0)
self.win.add_button('gtk-cancel', 1)
+ self.win.add_button('gtk-ok', 0)
self.win.connect("response", self.close, "editUser")
self.win.show_all()