[gnome-shell] Use transition:"easeOutQuad" for switch_workspace, just like everywhere else



commit 675fe5617674566726975d387b5aad23572738f8
Author: Dan Winship <danw gnome org>
Date:   Mon May 11 16:21:39 2009 -0400

    Use transition:"easeOutQuad" for switch_workspace, just like everywhere else
    
    the overshoot-and-bounce-back effect (easeOutBack) gets annoying after a while
---
 js/ui/windowManager.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index 18366a3..e1918be 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -343,7 +343,7 @@ WindowManager.prototype = {
                          { x: xDest,
                            y: yDest,
                            time: SWITCH_ANIMATION_TIME,
-                           transition: "easeOutBack",
+                           transition: "easeOutQuad",
                            onComplete: this._switchWorkspaceDone,
                            onCompleteScope: this
                          });
@@ -351,7 +351,7 @@ WindowManager.prototype = {
                          { x: 0,
                            y: 0,
                            time: SWITCH_ANIMATION_TIME,
-                           transition: "easeOutBack"
+                           transition: "easeOutQuad"
                          });
     },
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]