From fe131f926d6be917d727b52396e4e0a2a453ed31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Dre=C3=9Fler?= Date: Tue, 2 Jun 2020 14:01:32 +0200 Subject: [PATCH] workspace: Increase window clone fade duration to 200 ms The current value of 100 ms is barely noticable and looks very abrupt, use 200 ms instead which make it feel like an actual transition. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1296 --- 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 bc5d1de15..00a15b36a 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -14,7 +14,7 @@ var WINDOW_DND_SIZE = 256; var WINDOW_CLONE_MAXIMUM_SCALE = 1.0; var WINDOW_OVERLAY_IDLE_HIDE_TIMEOUT = 750; -var WINDOW_OVERLAY_FADE_TIME = 100; +var WINDOW_OVERLAY_FADE_TIME = 200; var WINDOW_REPOSITIONING_DELAY = 750;