From a6f39a12d7fef85c8ce40bc3898b17adf31bc2ba Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 4 Aug 2013 11:35:35 +0200 Subject: [PATCH] overview: Reset opacity when not animating We are not resetting the opacity when we are not animating, which can cause a hidden window to end up with opacity 0 if we remove the tween to early. --- js/ui/workspace.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index e2e461d23..2c8ff223f 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -1094,6 +1094,7 @@ const Workspace = new Lang.Class({ Tweener.removeTweens(clone.actor); clone.actor.set_position(x, y); clone.actor.set_scale(scale, scale); + clone.actor.set_opacity(255); clone.overlay.relayout(false); this._showWindowOverlay(clone, overlay, isOnCurrentWorkspace); }