From adfcd45bff24419b9dd9132366a6902165236c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 7 Dec 2020 15:24:37 +0100 Subject: [PATCH] workspace: Lower maximum window preview size again In commit 1218e68 we allowed full-sized window previews under the assumption that we had enough other clues (like the vignette effect) to differentiate the overview from the regular session. That didn't hold up in testing, so make the maximum preview size slightly smaller again. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3464 Part-of: --- js/ui/workspace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index 511ef5def..74d23840b 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -8,7 +8,7 @@ const Main = imports.ui.main; const Overview = imports.ui.overview; const { WindowPreview } = imports.ui.windowPreview; -var WINDOW_PREVIEW_MAXIMUM_SCALE = 1.0; +var WINDOW_PREVIEW_MAXIMUM_SCALE = 0.95; var WINDOW_REPOSITIONING_DELAY = 750;