From 58e68f96832fa613efd014cb024084f05e78b40e Mon Sep 17 00:00:00 2001 From: Jonathan Blandford Date: Wed, 3 Nov 1999 23:39:58 +0000 Subject: [PATCH] minor packing change --- demos/testpixbuf.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/demos/testpixbuf.c b/demos/testpixbuf.c index 6c058232a3..8ccb40c5d2 100644 --- a/demos/testpixbuf.c +++ b/demos/testpixbuf.c @@ -361,6 +361,7 @@ new_testrgb_window (GdkPixbuf *pixbuf, gchar *title) { GtkWidget *window; GtkWidget *vbox; + GtkWidget *temp_box; GtkWidget *button; GtkWidget *drawing_area; gint w, h; @@ -385,8 +386,11 @@ new_testrgb_window (GdkPixbuf *pixbuf, gchar *title) drawing_area = gtk_drawing_area_new (); + temp_box = gtk_hbox_new (FALSE, 0); gtk_drawing_area_size (GTK_DRAWING_AREA(drawing_area), w, h); - gtk_box_pack_start (GTK_BOX (vbox), drawing_area, FALSE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (temp_box), drawing_area, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (vbox), temp_box, FALSE, FALSE, 0); + gtk_signal_connect (GTK_OBJECT(drawing_area), "expose_event", GTK_SIGNAL_FUNC(expose_func), NULL);