From 557130d2f2747c2be5508685b94fba7d6f8624ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 18 Jul 2014 00:52:15 +0200 Subject: [PATCH] workspace: Remove unused parameter --- js/ui/workspace.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index ec012c04b..1303babb0 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -1326,7 +1326,7 @@ const Workspace = new Lang.Class({ }); } - this._animateClone(clone, overlay, x, y, scale, initialPositioning); + this._animateClone(clone, overlay, x, y, scale); } else { // cancel any active tweens (otherwise they might override our changes) Tweener.removeTweens(clone.actor); @@ -1355,7 +1355,7 @@ const Workspace = new Lang.Class({ } }, - _animateClone: function(clone, overlay, x, y, scale, initialPositioning) { + _animateClone: function(clone, overlay, x, y, scale) { Tweener.addTween(clone.actor, { x: x, y: y,