[gimp/gtk3-port: 92/236] app: cairo_save()/restore() around chaining up in draw()



commit 70a587e2c4c2f076efa791f14dac951456d21bad
Author: Michael Natterer <mitch gimp org>
Date:   Fri Oct 22 17:33:47 2010 +0200

    app: cairo_save()/restore() around chaining up in draw()

 app/widgets/gimppaletteview.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/app/widgets/gimppaletteview.c b/app/widgets/gimppaletteview.c
index 4ceb6ab..4f8c054 100644
--- a/app/widgets/gimppaletteview.c
+++ b/app/widgets/gimppaletteview.c
@@ -165,7 +165,9 @@ gimp_palette_view_draw (GtkWidget *widget,
   GimpPaletteView *pal_view = GIMP_PALETTE_VIEW (widget);
   GimpView        *view     = GIMP_VIEW (widget);
 
+  cairo_save (cr);
   GTK_WIDGET_CLASS (parent_class)->draw (widget, cr);
+  cairo_restore (cr);
 
   if (view->renderer->viewable && pal_view->selected)
     {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]