mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
environment: Remove unused ease parameter
In an earlier iteration of the ease patch set, animatable properties and easing parameters were different arguments. This wasn't the case in the final version, so remove the left-overs. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/917
This commit is contained in:
parent
10818c74a6
commit
9dc85d76d9
1 changed files with 2 additions and 2 deletions
|
|
@ -247,8 +247,8 @@ function init() {
|
|||
origSetEasingDelay.call(this, adjustAnimationTime(msecs));
|
||||
};
|
||||
|
||||
Clutter.Actor.prototype.ease = function (props, easingParams) {
|
||||
_easeActor(this, props, easingParams);
|
||||
Clutter.Actor.prototype.ease = function (props) {
|
||||
_easeActor(this, props);
|
||||
};
|
||||
Clutter.Actor.prototype.ease_property = function (propName, target, params) {
|
||||
_easeActorProperty(this, propName, target, params);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue