[gnome-shell] environment: Remove unused ease parameter



commit 9dc85d76d921e945ddf9a012b9632cb1ec20e6c4
Author: Florian Müllner <fmuellner gnome org>
Date:   Thu Dec 19 23:08:44 2019 +0100

    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 fba0281c76..31440ea2a6 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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]