From 112e74ed6412290f38cc1cbeede65e8e99607c75 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Mon, 6 Oct 2014 14:19:21 +0200 Subject: [PATCH] gdk: Allow calling gdk_cairo_surface_create_from_pixbuf with scale 0 The documentation explicitly states that 0 is an allowed value for using the same scale as the window. This 0 value is also explicitly checked down in the call chain and handled. --- gdk/gdkcairo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/gdkcairo.c b/gdk/gdkcairo.c index c54121599c..a363394458 100644 --- a/gdk/gdkcairo.c +++ b/gdk/gdkcairo.c @@ -285,7 +285,7 @@ gdk_cairo_surface_create_from_pixbuf (const GdkPixbuf *pixbuf, cairo_surface_t *surface; g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), NULL); - g_return_val_if_fail (scale > 0, NULL); + g_return_val_if_fail (scale >= 0, NULL); g_return_val_if_fail (for_window == NULL || GDK_IS_WINDOW (for_window), NULL); if (gdk_pixbuf_get_n_channels (pixbuf) == 3)