From 3bd5563a7eefc02a47d7e8c74d95f73c69875f32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20D=C3=A9murget?= Date: Sun, 16 Dec 2012 22:56:40 +0100 Subject: [PATCH] ctrlAltTab: Remove a "window" parameter leftover Commit 1f46a0d removed support for the items "window" parameter but there was an occurence left. https://bugzilla.gnome.org/show_bug.cgi?id=690312 --- js/ui/ctrlAltTab.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/ctrlAltTab.js b/js/ui/ctrlAltTab.js index 60fddda05..efab87b81 100644 --- a/js/ui/ctrlAltTab.js +++ b/js/ui/ctrlAltTab.js @@ -102,8 +102,7 @@ const CtrlAltTabManager = new Lang.Class({ icon = app.create_icon_texture(POPUP_APPICON_SIZE); else icon = textureCache.bind_pixbuf_property(windows[i], 'icon'); - items.push({ window: windows[i], - name: windows[i].title, + items.push({ name: windows[i].title, iconActor: icon, sortGroup: SortGroup.MIDDLE }); }