From: Vladimir Nadvornik Date: Mon, 20 Aug 2012 15:18:34 +0000 (+0200) Subject: more gtk3 drawing fixes X-Git-Tag: v1.2~105 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=af6326dd1794cd36fc7c2293d695efac34e842ec more gtk3 drawing fixes --- diff --git a/src/ui_bookmark.c b/src/ui_bookmark.c index 0f392b52..0c985f44 100644 --- a/src/ui_bookmark.c +++ b/src/ui_bookmark.c @@ -505,9 +505,13 @@ static void bookmark_drag_begin(GtkWidget *button, GdkDragContext *context, gpoi gtk_widget_get_allocation(button, &allocation); +#if GTK_CHECK_VERSION(3,0,0) + pixbuf = gdk_pixbuf_get_from_window(gtk_widget_get_window(button), + allocation.x, allocation.y, + allocation.width, allocation.height); +#else pixbuf = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, allocation.width, allocation.height); -#if !GTK_CHECK_VERSION(3,0,0) gdk_pixbuf_get_from_drawable(pixbuf, gtk_widget_get_window(button), NULL, allocation.x, allocation.y, 0, 0, allocation.width, allocation.height);