From de5f9d7ba73ea7e88860b07c2d48785886b58332 Mon Sep 17 00:00:00 2001 From: Romain Vigier Date: Fri, 17 Jun 2022 08:50:50 +0200 Subject: [PATCH] Background button: Fix thumbnail interpolation --- src/preferences/BackgroundButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences/BackgroundButton.js b/src/preferences/BackgroundButton.js index 86ab0d9..c6bcbdc 100644 --- a/src/preferences/BackgroundButton.js +++ b/src/preferences/BackgroundButton.js @@ -146,7 +146,7 @@ var BackgroundButton = GObject.registerClass({ width, height, -(pixbuf.width * scale - width) / 2, -(pixbuf.height * scale - height) / 2, scale, scale, - GdkPixbuf.InterpType.GDK_INTERP_BILINEAR + GdkPixbuf.InterpType.TILES ); return Gdk.Texture.new_for_pixbuf(thumbPixbuf);