Skip to content

Commit

Permalink
Merge pull request #5417 from Howard-C/glissando-italic
Browse files Browse the repository at this point in the history
fix #289908: cannot apply italic or underline to glissando text
  • Loading branch information
anatoly-os committed Oct 25, 2019
2 parents 0c9804d + 146f6cf commit 37067ee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libmscore/glissando.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -637,19 +637,19 @@ bool Glissando::setProperty(Pid propertyId, const QVariant& v)
setShowText(v.toBool());
break;
case Pid::GLISSANDO_STYLE:
setGlissandoStyle(GlissandoStyle(v.toInt()));
break;
setGlissandoStyle(GlissandoStyle(v.toInt()));
break;
case Pid::PLAY:
setPlayGlissando(v.toBool());
break;
setPlayGlissando(v.toBool());
break;
case Pid::FONT_FACE:
setFontFace(v.toString());
break;
case Pid::FONT_SIZE:
setFontSize(v.toReal());
break;
case Pid::FONT_STYLE:
setFontStyle(FontStyle(v.toBool()));
setFontStyle(FontStyle(v.toInt()));
break;
default:
if (!SLine::setProperty(propertyId, v))
Expand Down

0 comments on commit 37067ee

Please sign in to comment.