summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Jeix <devnull@localhost> 2010-11-20 20:30:17 +0100
committerGravatar Jeix <devnull@localhost> 2010-11-20 20:30:17 +0100
commit86ddfe612abef22306b40b34c4d73a680ac2356c (patch)
tree2b6134728e6604de695460b060e8687aeb796325
parentgui: account fixes (diff)
downloadpyload-86ddfe612abef22306b40b34c4d73a680ac2356c.tar.xz
gui: reverse tab order
-rw-r--r--module/gui/AccountEdit.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/module/gui/AccountEdit.py b/module/gui/AccountEdit.py
index 820d994d6..cc213b0d5 100644
--- a/module/gui/AccountEdit.py
+++ b/module/gui/AccountEdit.py
@@ -50,14 +50,14 @@ class AccountEdit(QWidget):
self.connect(changePw, SIGNAL("toggled(bool)"), password, SLOT("setEnabled(bool)"))
- l.addWidget(typeLabel, 0, 0)
- l.addWidget(loginLabel, 1, 0)
- l.addWidget(passwordLabel, 2, 0)
- l.addWidget(changePw, 2, 1)
- l.addWidget(password, 2, 2)
- l.addWidget(login, 1, 1, 1, 2)
- l.addWidget(acctype, 0, 1, 1, 2)
l.addWidget(save, 3, 0, 1, 3)
+ l.addWidget(acctype, 0, 1, 1, 2)
+ l.addWidget(login, 1, 1, 1, 2)
+ l.addWidget(password, 2, 2)
+ l.addWidget(changePw, 2, 1)
+ l.addWidget(passwordLabel, 2, 0)
+ l.addWidget(loginLabel, 1, 0)
+ l.addWidget(typeLabel, 0, 0)
self.connect(save, SIGNAL("clicked()"), self.slotSave)