From c7e597cf72781ec38ff81ac84af71461b7bb2a57 Mon Sep 17 00:00:00 2001 From: Daniel van Vugt Date: Fri, 29 May 2020 16:50:14 +0800 Subject: [PATCH] overviewControls: Animate sidebars the same duration as windows When you tap Super and see the sidebars and windows slide, it looks more cohesive if those animations complete at the same time. Previously there were 0.09 seconds difference between the two animations which was enough to make it look slightly buggy. Now it doesn't. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1289 --- js/ui/overviewControls.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js index 705e8c8d2..9f73408d0 100644 --- a/js/ui/overviewControls.js +++ b/js/ui/overviewControls.js @@ -8,8 +8,9 @@ const Main = imports.ui.main; const Params = imports.misc.params; const ViewSelector = imports.ui.viewSelector; const WorkspaceThumbnail = imports.ui.workspaceThumbnail; +const Overview = imports.ui.overview; -var SIDE_CONTROLS_ANIMATION_TIME = 160; +var SIDE_CONTROLS_ANIMATION_TIME = Overview.ANIMATION_TIME; function getRtlSlideDirection(direction, actor) { let rtl = actor.text_direction == Clutter.TextDirection.RTL;