From 47e7107740f9fd4e58deefea309c45ade1034579 Mon Sep 17 00:00:00 2001 From: njanssen Date: Thu, 24 Sep 2020 22:42:36 +0200 Subject: Fixed code style :) --- desktop/sources/scripts/core/io/midi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/sources/scripts/core/io/midi.js b/desktop/sources/scripts/core/io/midi.js index 0cdb100..285cebd 100644 --- a/desktop/sources/scripts/core/io/midi.js +++ b/desktop/sources/scripts/core/io/midi.js @@ -176,7 +176,7 @@ function Midi (client) { } this.selectNextInput = () => { - const id = this.inputIndex < this.inputs.length-1 ? this.inputIndex + 1 : -1 + const id = this.inputIndex < this.inputs.length - 1 ? this.inputIndex + 1 : -1 this.selectInput(id) client.update() } -- cgit v1.2.3