From 3430012136f066407fbf665c98e01a4d4c74998d Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 17 Feb 2013 14:20:34 +0100 Subject: [PATCH] overview: Don't display minimized windows differently in the overview Making them not fully opaque just makes them harder to see and there is no reason why the user should care whether the window is minimized or not when switching to a window display them like any other windows. https://bugzilla.gnome.org/show_bug.cgi?id=693991 --- js/ui/workspace.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index dbaa106ab..6f61d1e76 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -1211,9 +1211,8 @@ const Workspace = new Lang.Class({ clone.actor.y = y; } - // Make the window slightly transparent to indicate it's hidden Tweener.addTween(clone.actor, - { opacity: 128, + { opacity: 255, time: Overview.ANIMATION_TIME, transition: 'easeInQuad' });