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
=== modified file 'bin/modules/gui/main.py'
--- bin/modules/gui/main.py 2010-02-26 11:48:01 +0000
+++ bin/modules/gui/main.py 2010-10-22 19:36:51 +0000
@@ -111,6 +111,7 @@
111 self.table.attach(lbl, 0, 1, 2, 3)111 self.table.attach(lbl, 0, 1, 2, 3)
112 self.adminPwdEntry = gtk.Entry()112 self.adminPwdEntry = gtk.Entry()
113 self.adminPwdEntry.set_visibility(False)113 self.adminPwdEntry.set_visibility(False)
114 self.adminPwdEntry.set_activates_default(True)
114 self.table.attach(self.adminPwdEntry, 1, 2, 2, 3)115 self.table.attach(self.adminPwdEntry, 1, 2, 2, 3)
115116
116 self.vbox.add(self.table)117 self.vbox.add(self.table)