From f08757d75fbc09e0f4d16ff42611aac9d7804c77 Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Wed, 7 May 2014 09:04:09 -0300 Subject: [PATCH] CellRendererIcon: remove unused frame MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The white frame is not visible over the white background. Signed-off-by: Manuel QuiƱones --- src/sugar3/graphics/icon.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sugar3/graphics/icon.py b/src/sugar3/graphics/icon.py index 3d7e281a..a708f8bb 100644 --- a/src/sugar3/graphics/icon.py +++ b/src/sugar3/graphics/icon.py @@ -1006,9 +1006,6 @@ class CellRendererIcon(Gtk.CellRenderer): context, cr, background_area.x, background_area.y, background_area.width, background_area.height) - Gtk.render_frame(context, cr, background_area.x, background_area.y, - background_area.width, background_area.height) - if self._xo_color is not None: stroke_color = self._xo_color.get_stroke_color() fill_color = self._xo_color.get_fill_color()