Skip to content

Commit 93e37a0

Browse files
authored
FIXES ISSUE #4051 Add note piemenu opening behind the keyboard causing accessibility issue
1 parent 7d20f6f commit 93e37a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/widgets/musickeyboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1898,7 +1898,7 @@ function MusicKeyboard(activity) {
18981898
*/
18991899
this._createAddRowPieSubmenu = function () {
19001900
docById("wheelDivptm").style.display = "";
1901-
docById("wheelDivptm").style.zIndex = "300";
1901+
// docById("wheelDivptm").style.zIndex = "300";
19021902
const pitchLabels = ["do", "re", "mi", "fa", "sol", "la", "ti"];
19031903
const hertzLabels = [262, 294, 327, 348, 392, 436, 490, 523];
19041904
const VALUESLABEL = ["pitch", "hertz"];
@@ -1943,7 +1943,7 @@ function MusicKeyboard(activity) {
19431943
this._exitWheel.sliceSelectedPathCustom = this._exitWheel.slicePathCustom;
19441944
this._exitWheel.sliceInitPathCustom = this._exitWheel.slicePathCustom;
19451945
this._exitWheel.clickModeRotate = false;
1946-
this._exitWheel.createWheel(["x", " "]);
1946+
this._exitWheel.createWheel(["×", " "]);
19471947

19481948
const x = docById("addnotes").getBoundingClientRect().x;
19491949
const y = docById("addnotes").getBoundingClientRect().y;

0 commit comments

Comments
 (0)