Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions share/plugins/note_names/notenames.qml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ MuseScore {
for (var i = 0; i < notes.length; i++) {
if (!notes[i].visible)
continue // skip invisible notes
if (notes[i].tieBack)
continue // skip tied to notes
if (text.text) // only if text isn't empty
text.text = sep + text.text;
if (small)
Expand Down
Loading