summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Mikhaylenko <exalm7659@gmail.com>2021-02-28 19:57:53 +0500
committerAlexander Mikhaylenko <exalm7659@gmail.com>2021-02-28 19:57:53 +0500
commitdad0c51ec4e1d5fa7253b47f77994dcbd11ce587 (patch)
tree24c673e81ccdebd57aabdbdfd8837dad4e0cf4b7
parent404bb7a6388d5e8a82bcacfc5e14e096d6c1ffc4 (diff)
downloadgnome-shell-wip/exalm/cubic.tar.gz
overviewControls: Use easeOutCubic transition for overviewwip/exalm/cubic
Swipe tracker duration is intended to be used with easeOutCubic only.
-rw-r--r--js/ui/overviewControls.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ui/overviewControls.js b/js/ui/overviewControls.js
index 7de141e0c..1e276635b 100644
--- a/js/ui/overviewControls.js
+++ b/js/ui/overviewControls.js
@@ -670,7 +670,7 @@ class ControlsManager extends St.Widget {
this._stateAdjustment.remove_transition('value');
this._stateAdjustment.ease(target, {
duration,
- mode: Clutter.AnimationMode.EASE_OUT_QUAD,
+ mode: Clutter.AnimationMode.EASE_OUT_CUBIC,
onComplete,
});