Merge lp:~syleam/openobject-client/trunk-binary-look-and-feel into lp:openobject-client

Proposed by Christophe CHAUVET
Status: Merged
Merge reported by: Christophe Simonis (OpenERP)
Merged at revision: not available
Proposed branch: lp:~syleam/openobject-client/trunk-binary-look-and-feel
Merge into: lp:openobject-client
Diff against target: 16 lines (+2/-2)
1 file modified
bin/widget/view/form_gtk/binary.py (+2/-2)
To merge this branch: bzr merge lp:~syleam/openobject-client/trunk-binary-look-and-feel
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+16496@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Christophe CHAUVET (christophe-chauvet) wrote :

The binary field in form view have 4 buttons, only 2 have bevel

remove bevel made beautiful field.

Regards,

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/widget/view/form_gtk/binary.py'
2--- bin/widget/view/form_gtk/binary.py 2009-10-20 10:55:28 +0000
3+++ bin/widget/view/form_gtk/binary.py 2009-12-22 18:07:13 +0000
4@@ -73,11 +73,11 @@
5
6 self.add(box)
7
8- self.but_select = binButton('gtk-open', _('Select'), True)
9+ self.but_select = binButton('gtk-open', _('Select'), False)
10 self.but_select.connect('clicked', self.sig_select)
11 self.widget.pack_start(self.but_select, expand=False, fill=False)
12
13- self.but_exec = binButton('gtk-execute', _('Open'), True)
14+ self.but_exec = binButton('gtk-execute', _('Open'), False)
15 self.but_exec.connect('clicked', self.sig_execute)
16 self.widget.pack_start(self.but_exec, expand=False, fill=False)
17