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:
parent
0f2860b588
commit
675fe56176
@ -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"
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user