summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Janik <timj@imendio.com>2007-05-03 14:33:17 +0000
committerTim Janik <timj@src.gnome.org>2007-05-03 14:33:17 +0000
commit4b93b282aa7d5e43161f2f4953f256990602e4c4 (patch)
tree2d16ca08f08733e89e111dea8523e487a50c61c0 /tests
parentd3aeccf774fd13c4efdbdb873bb2258e1b94f853 (diff)
downloadgtk+-4b93b282aa7d5e43161f2f4953f256990602e4c4.tar.gz
made handle box test non-modal, so other test can interact with handle
Thu May 3 16:27:34 2007 Tim Janik <timj@imendio.com> * tests/testgtk.c (create_handle_box): made handle box test non-modal, so other test can interact with handle boxes. svn path=/trunk/; revision=17785
Diffstat (limited to 'tests')
-rw-r--r--tests/testgtk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testgtk.c b/tests/testgtk.c
index dcab31c447..82894e9706 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -2321,7 +2321,7 @@ create_handle_box (GtkWidget *widget)
gtk_window_set_screen (GTK_WINDOW (window),
gtk_widget_get_screen (widget));
- gtk_window_set_modal (GTK_WINDOW (window), TRUE);
+ gtk_window_set_modal (GTK_WINDOW (window), FALSE);
gtk_window_set_title (GTK_WINDOW (window),
"Handle Box Test");
gtk_window_set_resizable (GTK_WINDOW (window), TRUE);
@@ -2698,7 +2698,7 @@ create_get_image (GtkWidget *widget)
src);
gtk_box_pack_start (GTK_BOX (hbox),
- sw, TRUE, TRUE, 0);
+ sw, TRUE, TRUE, 0);
vbox = gtk_vbox_new (FALSE, 3);