From f9265ea3b8e1283f61e2d38db6d46879b8dc5ca2 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 8 Oct 2010 01:08:24 -0400 Subject: [PATCH] Fix resize grip drawing in GtkAssistant Chain up in the draw() implementation of GtkAssistant to let GtkWindow draw the resize grip. This avoids black resize grips in GtkAssistant windows. --- gtk/gtkassistant.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk/gtkassistant.c b/gtk/gtkassistant.c index ce3d8d0a6..ba9c06ba7 100644 --- a/gtk/gtkassistant.c +++ b/gtk/gtkassistant.c @@ -1444,6 +1444,9 @@ gtk_assistant_draw (GtkWidget *widget, GtkAssistantPrivate *priv = assistant->priv; GtkContainer *container = GTK_CONTAINER (widget); + if (GTK_WIDGET_CLASS (gtk_assistant_parent_class)->draw) + GTK_WIDGET_CLASS (gtk_assistant_parent_class)->draw (widget, cr); + assistant_paint_colored_box (widget, cr); gtk_container_propagate_draw (container, priv->header_image, cr); -- 2.43.2