From 758e41a133afb4e95dd91f1cbb66039f7636e4e3 Mon Sep 17 00:00:00 2001 From: monsta Date: Tue, 12 Apr 2016 13:46:13 +0300 Subject: fix crash on showing alt-tab thumbnails with compositor on (GTK+2) was my mistake in 9212dacb2bfd5985d8426bf0bdb88f2aca03444e :-/ --- src/core/screen.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/core/screen.c b/src/core/screen.c index b4cb5ef7..162046e8 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -1240,17 +1240,17 @@ get_window_pixbuf (MetaWindow *window, return NULL; #endif +#if GTK_CHECK_VERSION (3, 0, 0) meta_error_trap_push (NULL); -#if GTK_CHECK_VERSION (3, 0, 0) pixbuf = meta_ui_get_pixbuf_from_surface (surface); cairo_surface_destroy (surface); -#else - pixbuf = meta_ui_get_pixbuf_from_pixmap (pmap); -#endif if (meta_error_trap_pop_with_return (NULL, FALSE) != Success) g_clear_object (&pixbuf); +#else + pixbuf = meta_ui_get_pixbuf_from_pixmap (pmap); +#endif if (pixbuf == NULL) return NULL; -- cgit v1.2.1