diff options
author | Alexander Larsson <alexl@redhat.com> | 2009-06-04 08:05:51 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2009-06-05 15:18:36 +0200 |
commit | 55ee12c296a23f09fa274c6adb5f4214f9d2aade (patch) | |
tree | e6c1dfec1d4e4bcaaabd3c9aab57f3c4ffd035ec /tests | |
parent | cd7afc14fdf636bd0b482b1c7f0b2dd0afb534cd (diff) | |
download | gtk+-55ee12c296a23f09fa274c6adb5f4214f9d2aade.tar.gz |
Set the right parent root window for the offscreen windows
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gtkoffscreenbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gtkoffscreenbox.c b/tests/gtkoffscreenbox.c index 5a0749bd26..d5a2d20ecd 100644 --- a/tests/gtkoffscreenbox.c +++ b/tests/gtkoffscreenbox.c @@ -118,7 +118,7 @@ gtk_offscreen_box_realize (GtkWidget *widget) attributes.height = offscreen_box->child1->allocation.height; start_y += offscreen_box->child1->allocation.height; } - offscreen_box->offscreen_window1 = gdk_window_new (NULL, + offscreen_box->offscreen_window1 = gdk_window_new (gtk_widget_get_root_window (widget), &attributes, attributes_mask); gdk_window_set_user_data (offscreen_box->offscreen_window1, widget); if (offscreen_box->child1) @@ -132,7 +132,7 @@ gtk_offscreen_box_realize (GtkWidget *widget) attributes.width = offscreen_box->child2->allocation.width; attributes.height = offscreen_box->child2->allocation.height; } - offscreen_box->offscreen_window2 = gdk_window_new (NULL, + offscreen_box->offscreen_window2 = gdk_window_new (gtk_widget_get_root_window (widget), &attributes, attributes_mask); gdk_window_set_user_data (offscreen_box->offscreen_window2, widget); if (offscreen_box->child2) |