Change hyphen color Bernd Kottier • Aug 21, 2016 - 16:11 How can I change the color of hyphens in lyrics? Reply Comments Jojo-Schmitz • Aug 21, 2016 - 16:51 You'd need to change the code and build MuseScore yourself Reply Isaac Weiss • Aug 21, 2016 - 17:15 In reply to You'd need to change the code by Jojo-Schmitz Seems like a bug to me that the hyphens follow neither the color set in the style, nor that of the preceding syllable. Reply Jojo-Schmitz • Aug 21, 2016 - 17:20 In reply to Seems like a bug to me that by Isaac Weiss Yes. Same for Melisma (underscore) Reply Bernd Kottier • Aug 21, 2016 - 17:27 In reply to Yes. Same for Melisma by Jojo-Schmitz Thanks for giving clarity. In the meantime, ctrl-space followed by ctrl-dash will produce what I need. Reply Jojo-Schmitz • Aug 21, 2016 - 17:33 In reply to Yes. Same for Melisma by Jojo-Schmitz And it seems to an easy to fix bug: in lyrics.cpp, line 904, change QPen pen(lyricsLine()->curColor()); to QPen pen(lyricsLine()->lyrics()->curColor()); See https://github.com/musescore/MuseScore/pull/2791 Reply
Isaac Weiss • Aug 21, 2016 - 17:15 In reply to You'd need to change the code by Jojo-Schmitz Seems like a bug to me that the hyphens follow neither the color set in the style, nor that of the preceding syllable. Reply
Jojo-Schmitz • Aug 21, 2016 - 17:20 In reply to Seems like a bug to me that by Isaac Weiss Yes. Same for Melisma (underscore) Reply
Bernd Kottier • Aug 21, 2016 - 17:27 In reply to Yes. Same for Melisma by Jojo-Schmitz Thanks for giving clarity. In the meantime, ctrl-space followed by ctrl-dash will produce what I need. Reply
Jojo-Schmitz • Aug 21, 2016 - 17:33 In reply to Yes. Same for Melisma by Jojo-Schmitz And it seems to an easy to fix bug: in lyrics.cpp, line 904, change QPen pen(lyricsLine()->curColor()); to QPen pen(lyricsLine()->lyrics()->curColor()); See https://github.com/musescore/MuseScore/pull/2791 Reply
Comments
You'd need to change the code and build MuseScore yourself
In reply to You'd need to change the code by Jojo-Schmitz
Seems like a bug to me that the hyphens follow neither the color set in the style, nor that of the preceding syllable.
In reply to Seems like a bug to me that by Isaac Weiss
Yes. Same for Melisma (underscore)
In reply to Yes. Same for Melisma by Jojo-Schmitz
Thanks for giving clarity. In the meantime, ctrl-space followed by ctrl-dash will produce what I need.
In reply to Yes. Same for Melisma by Jojo-Schmitz
And it seems to an easy to fix bug: in lyrics.cpp, line 904, change
QPen pen(lyricsLine()->curColor());
to
QPen pen(lyricsLine()->lyrics()->curColor());
See https://github.com/musescore/MuseScore/pull/2791