summaryrefslogtreecommitdiff
path: root/gtk/gtkprogressbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkprogressbar.c')
-rw-r--r--gtk/gtkprogressbar.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c
index d8f6f3265..a0061b99a 100644
--- a/gtk/gtkprogressbar.c
+++ b/gtk/gtkprogressbar.c
@@ -759,16 +759,16 @@ gtk_progress_bar_paint (GtkProgress *progress)
2 * widget->style->xthickness - 3;
rect.height = widget->allocation.height -
2 * widget->style->ythickness - 3;
+
+ gtk_paint_layout (widget->style,
+ progress->offscreen_pixmap,
+ GTK_WIDGET_STATE (widget),
+ &rect,
+ widget,
+ "progressbar",
+ x, y,
+ layout);
- gdk_gc_set_clip_rectangle (widget->style->fg_gc[widget->state],
- &rect);
-
- gdk_draw_layout (progress->offscreen_pixmap,
- widget->style->fg_gc[widget->state],
- x, y, layout);
-
- gdk_gc_set_clip_rectangle (widget->style->fg_gc[widget->state],
- NULL);
g_object_unref (G_OBJECT (layout));
g_free (buf);
}