Fix [New] button height.

This fix will be there for 3.8.x since I'll migrate
Contacts to new GdHeaderBar soon.
This commit is contained in:
Erick Pérez Castellanos 2013-04-29 12:28:55 -04:00
parent 329b85c142
commit 5375106931

View file

@ -298,6 +298,7 @@ public class Contacts.App : Gtk.Application {
var add_button = left_toolbar.add_button (null, _("New"), true) as Gtk.Button;
add_button.set_size_request (70, -1);
add_button.set_vexpand (true);
add_button.clicked.connect (app.new_contact);
select_button = left_toolbar.add_toggle ("object-select-symbolic", null, false) as ToggleButton;