Add send midi clock checkbox to localstorage
This commit is contained in:
@ -13,7 +13,7 @@ export class TransportNode extends AudioWorkletNode {
|
||||
/** @type {(this: MessagePort, ev: MessageEvent<any>) => any} */
|
||||
handleMessage = (message) => {
|
||||
if (message.data && message.data.type === "bang") {
|
||||
this.app.api.MidiConnection.sendMidiClock();
|
||||
if(this.app.settings.send_clock) this.app.api.MidiConnection.sendMidiClock();
|
||||
this.app.clock.tick++;
|
||||
const futureTimeStamp = this.app.clock.convertTicksToTimeposition(
|
||||
this.app.clock.tick
|
||||
|
||||
Reference in New Issue
Block a user