diff options
author | Devine Lu Linvega <[email protected]> | 2019-04-15 10:07:28 +0900 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2019-04-15 10:07:28 +0900 |
commit | de2a777dde345494cf36767a0a4f9f88f5264926 (patch) | |
tree | e0441a0461df40220b738fbf4228b281b687f99e | |
parent | 6ad8e1279d900c9817aead2e0e2f0846cf01af62 (diff) | |
download | Orca-de2a777dde345494cf36767a0a4f9f88f5264926.tar.gz Orca-de2a777dde345494cf36767a0a4f9f88f5264926.zip |
Paint midi clock lock in yellow
-rw-r--r-- | desktop/sources/scripts/terminal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/terminal.js b/desktop/sources/scripts/terminal.js index 28124b0..74268e5 100644 --- a/desktop/sources/scripts/terminal.js +++ b/desktop/sources/scripts/terminal.js @@ -176,7 +176,7 @@ function Terminal () { this.write(`${this.orca.w}x${this.orca.h}`, col * 0, 0, this.grid.w) this.write(`${this.grid.w}/${this.grid.h}`, col * 1, 0, this.grid.w) this.write(`${this.source}`, col * 2, 0, this.grid.w) - this.write(`${this.clock}`, col * 3, 0, this.grid.w) + this.write(`${this.clock}`, col * 3, 0, this.grid.w, this.io.midi.inputIndex > -1 ? 6 : 2) this.write(`${this.io.inspect(this.grid.w)}`, col * 4, 0, this.grid.w) if (this.orca.f < 25) { |