We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d74924f commit 2c8938dCopy full SHA for 2c8938d
partitura/io/importmusicxml.py
@@ -586,7 +586,8 @@ def _handle_measure(
586
if ignore_invisible_objects:
587
print_obj = get_value_from_attribute(e, "print-object", str)
588
notehead = e.find("notehead") # Musescore mask notes with notehead="none"
589
- if print_obj == "no" or (notehead is not None and notehead.text == "none"):
+ cue = e.find("cue") # cue notes are silent
590
+ if print_obj == "no" or (notehead is not None and notehead.text == "none") or cue is not None:
591
# Still update position for invisible notes (to avoid problems with backups)
592
if e.tag == "note":
593
chord = e.find("chord")
0 commit comments