From 9dc85d76d921e945ddf9a012b9632cb1ec20e6c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 19 Dec 2019 23:08:44 +0100 Subject: [PATCH] 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 --- js/ui/environment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/environment.js b/js/ui/environment.js index fba0281c7..31440ea2a 100644 --- a/js/ui/environment.js +++ b/js/ui/environment.js @@ -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);