Skip to content

Commit 8f91980

Browse files
AlessandroPosenatoAlessandroPosenato
andauthored
Fixes #4038 Issue with Note Block collapsing (#4043)
Co-authored-by: AlessandroPosenato <[email protected]>
1 parent b5be318 commit 8f91980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/piemenus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ const piemenuPitches = (
327327
} else {
328328
accidental = EQUIVALENTACCIDENTALS[scale[6 - i]].substr(1);
329329
}
330-
block.value = block.value.replace(SHARP, "").replace(FLAT, "");
330+
block.value = block.value.replace(SHARP, "").replace(FLAT, "").replace(DOUBLESHARP, "").replace(DOUBLEFLAT, "");
331331
block.value += accidental;
332332
block.text.text = block.value;
333333
}

0 commit comments

Comments
 (0)