[gnome-contacts] Remove unnecessary padding in toolbar



commit 4c0f92211b187a1d2da3ff9daa2c14cb51bf647c
Author: Alexander Larsson <alexl redhat com>
Date:   Mon Aug 22 12:50:04 2011 +0200

    Remove unnecessary padding in toolbar

 src/contacts-list-pane.vala |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)
---
diff --git a/src/contacts-list-pane.vala b/src/contacts-list-pane.vala
index a69088d..a83f378 100644
--- a/src/contacts-list-pane.vala
+++ b/src/contacts-list-pane.vala
@@ -77,10 +77,6 @@ public class Contacts.ListPane : Frame {
     toolbar.set_vexpand (false);
     toolbar.set_hexpand (true);
 
-    var separator = new SeparatorToolItem ();
-    separator.set_draw (false);
-    toolbar.add (separator);
-
     filter_entry = new Entry ();
     filter_entry.set_icon_from_icon_name (EntryIconPosition.SECONDARY, "edit-find-symbolic");
     filter_entry.changed.connect (filter_entry_changed);
@@ -92,7 +88,7 @@ public class Contacts.ListPane : Frame {
     search_entry_item.add (filter_entry);
     toolbar.add (search_entry_item);
 
-    separator = new SeparatorToolItem ();
+    var separator = new SeparatorToolItem ();
     separator.set_draw (false);
     toolbar.add (separator);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]