From 68c2ad7062f6e5f610bbb63c6af57a56aa7ebdd2 Mon Sep 17 00:00:00 2001 From: o9000 Date: Sat, 25 Nov 2017 22:27:46 +0100 Subject: [PATCH] Taskbar: thumbnails (disable cairo method as it leaks heavily when screensaver is on) --- src/util/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/window.c b/src/util/window.c index cf95c4c..e964f47 100644 --- a/src/util/window.c +++ b/src/util/window.c @@ -662,7 +662,7 @@ cairo_surface_t *get_window_thumbnail(Window win, int size) } } - if (!image_surface) { + if (0 && !image_surface) { image_surface = get_window_thumbnail_cairo(win, size); if (image_surface && cairo_surface_is_blank(image_surface)) { cairo_surface_destroy(image_surface);