Fixing the fix for bpm

This commit is contained in:
2023-10-31 01:27:44 +02:00
parent 707435ee5c
commit 9ca325c927

View File

@ -155,6 +155,7 @@ export class Clock {
if (bpm > 0 && this._bpm !== bpm) { if (bpm > 0 && this._bpm !== bpm) {
this.transportNode?.setBPM(bpm); this.transportNode?.setBPM(bpm);
this._bpm = bpm; this._bpm = bpm;
this.logicalTime = this.realTime;
} }
} }