Merge pull request #2964 from NetForce1/86406-midi-lyrics-xml
fix #86406 by XML escaping lyrics in MIDI import
This commit is contained in:
commit
2a9b099645
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ void addLyricsToScore(
|
|||
QString text = MidiCharset::convertToCharset(it->second);
|
||||
if (originalTime != ReducedFraction(0, 1) || !isTitlePrefix(text)) { // not title
|
||||
score->addLyrics(quantizedTime.ticks(), staffAddTo->idx(),
|
||||
removeSlashes(text));
|
||||
removeSlashes(text).toHtmlEscaped());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue