summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlexander Mikhaylenko <alexm@gnome.org>2020-05-11 03:47:39 +0500
committerAlexander Mikhaylenko <alexm@gnome.org>2020-05-11 03:47:39 +0500
commit466e8a70e5a58101f8c6fc32a1ade852730b6b49 (patch)
tree35265612d0e1816d5e68c5b7d20da0305cb83d48 /tests
parentf2542e95f9fcd1aaf617c0f53d50b8ffabcf96c8 (diff)
downloadgtk+-466e8a70e5a58101f8c6fc32a1ade852730b6b49.tar.gz
tests: Add missing margin for testentrycompletion
Diffstat (limited to 'tests')
-rw-r--r--tests/testentrycompletion.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testentrycompletion.c b/tests/testentrycompletion.c
index 2f726b53ef..e06dc3f5ec 100644
--- a/tests/testentrycompletion.c
+++ b/tests/testentrycompletion.c
@@ -314,6 +314,10 @@ main (int argc, char *argv[])
g_signal_connect (window, "destroy", G_CALLBACK (quit_cb), &done);
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_widget_set_margin_start (vbox, 5);
+ gtk_widget_set_margin_end (vbox, 5);
+ gtk_widget_set_margin_top (vbox, 5);
+ gtk_widget_set_margin_bottom (vbox, 5);
gtk_window_set_child (GTK_WINDOW (window), vbox);
label = gtk_label_new (NULL);