Merge lp:~zaber/openobject-client/migrate-default-button into lp:openobject-client/5.0

Proposed by Don Kirkby
Status: Needs review
Proposed branch: lp:~zaber/openobject-client/migrate-default-button
Merge into: lp:openobject-client/5.0
Diff against target: 11 lines (+1/-0)
1 file modified
bin/modules/gui/main.py (+1/-0)
To merge this branch: bzr merge lp:~zaber/openobject-client/migrate-default-button
Reviewer Review Type Date Requested Status
OpenERP sa GTK client R&D Pending
Review via email: mp+39171@code.launchpad.net

Description of the change

Activate the OK button from the password field of the Migrate Database dialog.

To post a comment you must log in.

Unmerged revisions

1091. By Don Kirkby

[FIX] bug lp:665306 Activate OK button from password field in migrate database dialog.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/modules/gui/main.py'
2--- bin/modules/gui/main.py 2010-02-26 11:48:01 +0000
3+++ bin/modules/gui/main.py 2010-10-22 19:36:51 +0000
4@@ -111,6 +111,7 @@
5 self.table.attach(lbl, 0, 1, 2, 3)
6 self.adminPwdEntry = gtk.Entry()
7 self.adminPwdEntry.set_visibility(False)
8+ self.adminPwdEntry.set_activates_default(True)
9 self.table.attach(self.adminPwdEntry, 1, 2, 2, 3)
10
11 self.vbox.add(self.table)