Fixing bug

This commit is contained in:
2023-08-05 21:47:27 +02:00
parent a62f3006ef
commit 9e4ee3659f
3 changed files with 9 additions and 2 deletions

View File

@ -302,6 +302,14 @@ export class UserAPI {
} }
it = this.iterator it = this.iterator
get _() {
return this.iterator('_');
}
get A() {
return this.iterator('A');
}
// ============================================================= // =============================================================
// Drunk mechanism // Drunk mechanism
// ============================================================= // =============================================================

View File

@ -157,8 +157,6 @@ export class MidiConnection{
} }
} }
public sendMidiControlChange(controlNumber: number, value: number): void { public sendMidiControlChange(controlNumber: number, value: number): void {
/** /**
* Sends a MIDI Control Change message to the currently selected MIDI output. * Sends a MIDI Control Change message to the currently selected MIDI output.

View File

@ -696,6 +696,7 @@ function startClock() {
document document
.removeEventListener("click", startClock); .removeEventListener("click", startClock);
document.removeEventListener("keydown", startOnEnter); document.removeEventListener("keydown", startOnEnter);
document.removeEventListener("click", startOnClick)
app.clock.start(); app.clock.start();
app.view.focus(); app.view.focus();
app.setButtonHighlighting("play", true); app.setButtonHighlighting("play", true);