From 07e8c1019b0e3b8fc49304bae6c074e282053925 Mon Sep 17 00:00:00 2001 From: Steve Zesch Date: Sat, 26 May 2012 12:42:33 -0400 Subject: Fixes https://github.com/mate-desktop/mate-window-manager/issues/4 --- src/core/screen.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/core/screen.c') diff --git a/src/core/screen.c b/src/core/screen.c index f9db9c71..9c3e2b1f 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -1280,7 +1280,13 @@ meta_screen_ensure_tab_popup (MetaScreen *screen, entries[i].key = (MetaTabEntryKey) window->xwindow; entries[i].title = window->title; - win_pixbuf = get_window_pixbuf (window, &width, &height); + /* Only get the pixbuf if the user does NOT have + /apps/marco/general/compositing_fast_alt_tab set to true + in mateconf. There is an obvious lag when the pixbuf is + retrieved. */ + if (!meta_prefs_get_compositing_fast_alt_tab()) + win_pixbuf = get_window_pixbuf (window, &width, &height); + if (win_pixbuf == NULL) entries[i].icon = g_object_ref (window->icon); else -- cgit v1.2.1