Skip to content
Snippets Groups Projects
Commit 80aeea1b authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

draw pixbuf at the corect place in cell_renderer_image. Fixes #3775

parent d32e1ae0
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ def on_render(self, window, widget, background_area, cell_area,
window.draw_pixbuf(widget.style.black_gc, pix,
draw_rect.x - pix_rect.x,
draw_rect.y - pix_rect.y,
draw_rect.x, draw_rect.y + 2,
draw_rect.x, draw_rect.y,
draw_rect.width, draw_rect.height,
gtk.gdk.RGB_DITHER_NONE, 0, 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment