summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacob Berkman <jberkman@src.gnome.org>2001-11-16 22:58:32 +0000
committerJacob Berkman <jberkman@src.gnome.org>2001-11-16 22:58:32 +0000
commit976a5b31000ae8fb220bebbd07a262456d6cae7e (patch)
treea6e954f20665bd0bd5890fb57e2bdb4c315c3a42 /tests
parent8d99d6af28114c65f885a4b2b1a9049cb89c03f7 (diff)
downloadgdk-pixbuf-976a5b31000ae8fb220bebbd07a262456d6cae7e.tar.gz
move the separator to the right place in the radio buttons window
Diffstat (limited to 'tests')
-rw-r--r--tests/testgtk.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/testgtk.c b/tests/testgtk.c
index 3969e04d2..a429c6bec 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -680,6 +680,10 @@ create_radio_buttons (void)
separator = gtk_hseparator_new ();
gtk_box_pack_start (GTK_BOX (box1), separator, FALSE, TRUE, 0);
+ box2 = gtk_vbox_new (FALSE, 10);
+ gtk_container_set_border_width (GTK_CONTAINER (box2), 10);
+ gtk_box_pack_start (GTK_BOX (box1), box2, TRUE, TRUE, 0);
+
button = gtk_radio_button_new_with_label (NULL, "button4");
gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (button), FALSE);
gtk_box_pack_start (GTK_BOX (box2), button, TRUE, TRUE, 0);