From f3df62f27e2afc62be7cb810dfe9e918b02ce09f Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Wed, 20 Feb 2013 01:44:09 +0100 Subject: [PATCH] WorkspaceThumbnail: fix typo in stacking code Was causing thumbnails to be below the background. https://bugzilla.gnome.org/show_bug.cgi?id=694227 --- js/ui/workspaceThumbnail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/workspaceThumbnail.js b/js/ui/workspaceThumbnail.js index f90877766..c2a415a19 100644 --- a/js/ui/workspaceThumbnail.js +++ b/js/ui/workspaceThumbnail.js @@ -425,7 +425,7 @@ const WorkspaceThumbnail = new Lang.Class({ this._contents.add_actor(clone.actor); if (this._windows.length == 0) - clone.setStackAbove(this._bgManager.actor); + clone.setStackAbove(this._bgManager.background.actor); else clone.setStackAbove(this._windows[this._windows.length - 1].actor);