3145: Improve image subsection selection; patch for gtk < 2.22 (by Robert Cheramy)

svn: r18239
This commit is contained in:
Jérôme Rapinat 2011-10-02 08:06:40 +00:00
parent bf77bf9d9a
commit 9ec57d9bec

View File

@ -430,7 +430,7 @@ class EditMediaRef(EditReference):
self.rect_pixbuf_render = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, False, 8, w, h)
cm = gtk.gdk.colormap_get_system()
color = cm.alloc_color(gtk.gdk.Color("blue"))
self.rect_pixmap = gtk.gdk.Pixmap(None, w, h, 24)
self.rect_pixmap = gtk.gdk.Pixmap(None, w, h, cm.get_visual().depth)
self.rect_pixmap.set_colormap(cm)
self.rect_gc = self.rect_pixmap.new_gc()
self.rect_gc.set_foreground(color)