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
@ -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…
Reference in New Issue
Block a user