Use transition:"easeOutQuad" for switch_workspace, just like everywhere else

the overshoot-and-bounce-back effect (easeOutBack) gets annoying after a while
This commit is contained in:
Dan Winship 2009-05-11 16:21:39 -04:00
parent 0f2860b588
commit 675fe56176

View File

@ -343,7 +343,7 @@ WindowManager.prototype = {
{ x: xDest, { x: xDest,
y: yDest, y: yDest,
time: SWITCH_ANIMATION_TIME, time: SWITCH_ANIMATION_TIME,
transition: "easeOutBack", transition: "easeOutQuad",
onComplete: this._switchWorkspaceDone, onComplete: this._switchWorkspaceDone,
onCompleteScope: this onCompleteScope: this
}); });
@ -351,7 +351,7 @@ WindowManager.prototype = {
{ x: 0, { x: 0,
y: 0, y: 0,
time: SWITCH_ANIMATION_TIME, time: SWITCH_ANIMATION_TIME,
transition: "easeOutBack" transition: "easeOutQuad"
}); });
}, },