From 9f108bc66a8fb443ad99e949f1829090a4b7264b Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 18 May 2018 16:40:45 +0200 Subject: [PATCH] Use bilinear scaling on embedded platforms Modern embedded hardware should be good enough to handle that. --- src/desktop/desktopicon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/desktop/desktopicon.c b/src/desktop/desktopicon.c index f951b0a..9e5fae2 100644 --- a/src/desktop/desktopicon.c +++ b/src/desktop/desktopicon.c @@ -657,7 +657,7 @@ static void _desktopicon_set_icon(DesktopIcon * desktopicon, GdkPixbuf * icon) { GdkPixbuf * i = NULL; #ifdef EMBEDDED - const GdkInterpType interp = GDK_INTERP_NEAREST; + const GdkInterpType interp = GDK_INTERP_BILINEAR; #else const GdkInterpType interp = GDK_INTERP_HYPER; #endif