From c92b7d4224b9cef1d08373fcc28f7fbd96c64e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Fri, 21 Apr 2017 22:34:36 +0200 Subject: box: Remove fill child property GtkWidget:halign and GtkWidget:valign are sufficient --- examples/search-bar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/search-bar.c b/examples/search-bar.c index 3d3a1adf71..f932ec8922 100644 --- a/examples/search-bar.c +++ b/examples/search-bar.c @@ -30,10 +30,10 @@ activate_cb (GtkApplication *app, entry = gtk_search_entry_new (); gtk_widget_set_hexpand (entry, TRUE); - gtk_box_pack_start (GTK_BOX (box), entry, TRUE); + gtk_box_pack_start (GTK_BOX (box), entry); menu_button = gtk_menu_button_new (); - gtk_box_pack_start (GTK_BOX (box), menu_button, FALSE); + gtk_box_pack_start (GTK_BOX (box), menu_button); gtk_search_bar_connect_entry (GTK_SEARCH_BAR (search_bar), GTK_ENTRY (entry)); -- cgit v1.2.1