Skip to content

Commit

Permalink
Fix #334302: Add single stroke caesura
Browse files Browse the repository at this point in the history
it got added with SMuFL 1.4

Backport of musescore#12863
  • Loading branch information
Jojo-Schmitz committed Aug 15, 2022
1 parent 232b188 commit 21ce92f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions fonttools/smufl2sym-in-trans.json
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@
"caesuraCurved": null,
"caesuraShort": null,
"caesuraThick": null,
"caesuraSingleStroke": null,
"chantCaesura": null,
"coda": null,
"codaSquare": null,
Expand Down
1 change: 1 addition & 0 deletions libmscore/breath.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const std::vector<BreathType> Breath::breathList {
{ SymId::caesuraShort, true, 2.0 },
{ SymId::caesuraThick, true, 2.0 },
{ SymId::chantCaesura, true, 2.0 },
{ SymId::caesuraSingleStroke, true, 2.0 },
};

//---------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion libmscore/sym.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3756,7 +3756,7 @@ const std::array<const char*, int(SymId::lastSym)+1> Sym::symUserNames = { {
QT_TRANSLATE_NOOP("symUserNames", "Caesura"),
QT_TRANSLATE_NOOP("symUserNames", "Curved caesura"),
QT_TRANSLATE_NOOP("symUserNames", "Short caesura"),
"Single stroke caesura",
QT_TRANSLATE_NOOP("symUserNames", "Single stroke caesura"),
QT_TRANSLATE_NOOP("symUserNames", "Thick caesura"),
"Accentus above",
"Accentus below",
Expand Down

0 comments on commit 21ce92f

Please sign in to comment.