From d1d677a82a0dddc87a1d937e4f16cee1930e2957 Mon Sep 17 00:00:00 2001 From: hermes83 <> Date: Wed, 11 Nov 2020 16:41:35 +0100 Subject: [PATCH] fix stemp function name in js version --- effectsJs.js | 2 +- metadata.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/effectsJs.js b/effectsJs.js index f44ef49..1fd1306 100644 --- a/effectsJs.js +++ b/effectsJs.js @@ -170,7 +170,7 @@ var WobblyEffect = GObject.registerClass({}, } on_tick_elapsed(timer, msec) { - this.wobblyModel.step(1 + (msec - this.msecOld) / this.SPEEDUP_FACTOR); + this.wobblyModel.Step(1 + (msec - this.msecOld) / this.SPEEDUP_FACTOR); this.msecOld = msec; this.invalidate(); } diff --git a/metadata.json b/metadata.json index 6808505..9df6484 100644 --- a/metadata.json +++ b/metadata.json @@ -11,5 +11,5 @@ ], "url": "https://github.com/hermes83/compiz-windows-effect", "uuid": "compiz-windows-effect@hermes83.github.com", - "version": 5 + "version": 6 }