windowManager: Remove excess parameter

https://bugzilla.gnome.org/show_bug.cgi?id=787907
This commit is contained in:
Florian Müllner 2017-09-18 19:37:07 +02:00
parent 2d11b5cea0
commit 5a414fff44

View File

@ -516,7 +516,7 @@ var TouchpadWorkspaceSwitchAction = new Lang.Class({
return Clutter.EVENT_PROPAGATE;
if (event.get_gesture_phase() == Clutter.TouchpadGesturePhase.UPDATE) {
let [dx, dy] = event.get_gesture_motion_delta(event);
let [dx, dy] = event.get_gesture_motion_delta();
this._dx += dx;
this._dy += dy;