connecting resume to the interface

This commit is contained in:
2023-10-27 09:52:29 +02:00
parent da70a6007a
commit dcd4388053

View File

@ -184,7 +184,11 @@ export class Clock {
*/
this.app.audioContext.resume();
this.app.api.MidiConnection.sendStartMessage();
this.transportNode?.start();
if (this.tick > 0) {
this.transportNode?.resume();
} else {
this.transportNode?.start();
}
}
public pause(): void {