overlay/paned: Ensure we set the right visual on windows

This was always "needed", but the problems with not doing it
now are worse, since any CSD window will have a nonstandard
rgba visual.
This commit is contained in:
Alexander Larsson 2013-05-08 15:51:00 +02:00
parent 35a14cec0b
commit bb7054b508
2 changed files with 5 additions and 3 deletions

View File

@ -143,7 +143,8 @@ gtk_overlay_create_child_window (GtkOverlay *overlay,
attributes.height = allocation.height; attributes.height = allocation.height;
attributes.x = allocation.x; attributes.x = allocation.x;
attributes.y = allocation.y; attributes.y = allocation.y;
attributes_mask = GDK_WA_X | GDK_WA_Y; attributes.visual = gtk_widget_get_visual (widget);
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
window = gdk_window_new (gtk_widget_get_window (widget), window = gdk_window_new (gtk_widget_get_window (widget),

View File

@ -1391,6 +1391,7 @@ gtk_paned_create_child_window (GtkPaned *paned,
attributes.window_type = GDK_WINDOW_CHILD; attributes.window_type = GDK_WINDOW_CHILD;
attributes.wclass = GDK_INPUT_OUTPUT; attributes.wclass = GDK_INPUT_OUTPUT;
attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK; attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
attributes.visual = gtk_widget_get_visual (widget);
if (child) if (child)
{ {
GtkAllocation allocation; GtkAllocation allocation;
@ -1415,13 +1416,13 @@ gtk_paned_create_child_window (GtkPaned *paned,
gtk_widget_get_allocation (child, &allocation); gtk_widget_get_allocation (child, &allocation);
attributes.width = allocation.width; attributes.width = allocation.width;
attributes.height = allocation.height; attributes.height = allocation.height;
attributes_mask = GDK_WA_X | GDK_WA_Y; attributes_mask = GDK_WA_X | GDK_WA_Y| GDK_WA_VISUAL;
} }
else else
{ {
attributes.width = 1; attributes.width = 1;
attributes.height = 1; attributes.height = 1;
attributes_mask = 0; attributes_mask = GDK_WA_VISUAL;
} }
window = gdk_window_new (gtk_widget_get_window (widget), window = gdk_window_new (gtk_widget_get_window (widget),