diff options
author | Timm Bäder <mail@baedert.org> | 2017-04-21 22:34:36 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2017-04-25 20:30:37 +0200 |
commit | c92b7d4224b9cef1d08373fcc28f7fbd96c64e6d (patch) | |
tree | 6eaa81528f6ec5152eccc475df7b4d8a769f3ea6 /tests/testellipsise.c | |
parent | 5729ea7744c2a41ae8fb833db6690a6aa5ad7a84 (diff) | |
download | gtk+-c92b7d4224b9cef1d08373fcc28f7fbd96c64e6d.tar.gz |
box: Remove fill child property
GtkWidget:halign and GtkWidget:valign are sufficient
Diffstat (limited to 'tests/testellipsise.c')
-rw-r--r-- | tests/testellipsise.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testellipsise.c b/tests/testellipsise.c index 273d3f65a9..d094625d10 100644 --- a/tests/testellipsise.c +++ b/tests/testellipsise.c @@ -158,9 +158,9 @@ main (int argc, char *argv[]) gtk_widget_set_vexpand (overlay, TRUE); gtk_overlay_add_overlay (GTK_OVERLAY (overlay), label); - gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE); - gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE); - gtk_box_pack_start (GTK_BOX (vbox), overlay, TRUE); + gtk_box_pack_start (GTK_BOX (vbox), combo); + gtk_box_pack_start (GTK_BOX (vbox), scale); + gtk_box_pack_start (GTK_BOX (vbox), overlay); g_object_set_data (G_OBJECT (label), "combo", combo); |