From d3e278c593ff9c97b79ba76dc4ff86b16050025e Mon Sep 17 00:00:00 2001 From: Lumi Pakkanen Date: Fri, 17 Jun 2022 09:57:44 +0300 Subject: [PATCH] Disable keyboard playing while cycling through the waveform options --- src/js/synth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/synth.js b/src/js/synth.js index cd2c42c..68ed36d 100644 --- a/src/js/synth.js +++ b/src/js/synth.js @@ -49,7 +49,7 @@ function touch_to_midinote([row, col]) { function is_qwerty_active() { jQuery('div#qwerty-indicator').empty() var focus = document.activeElement.tagName - if (focus == 'TEXTAREA' || focus == 'INPUT') { + if (focus == 'TEXTAREA' || focus == 'INPUT' || focus == 'SELECT') { jQuery('div#qwerty-indicator').html( '

Keyboard disabled

Click here to enable QWERTY keyboard playing.

' )