Skip to content

Commit

Permalink
completed ported #7036 : Fix #314029: Order of Text styles in Inspect…
Browse files Browse the repository at this point in the history
…or dropdown and Styles dialog is different
  • Loading branch information
igorkorsukov authored and vpereverzev committed Feb 12, 2021
1 parent 5a0b00a commit a9a7e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libmscore/read114.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ static void readFingering114(XmlReader& e, Fingering* fing)
auto subtype = e.readElementText();
if (subtype == "StringNumber") {
isStringNumber = true;
fing->setProperty(Pid::SUB_STYLE, QVariant(10));
fing->setProperty(Pid::SUB_STYLE, QVariant(int(Tid::STRING_NUMBER)));
fing->setPropertyFlags(Pid::SUB_STYLE, PropertyFlags::UNSTYLED);
}
} else if (tag == "frame") {
Expand Down

0 comments on commit a9a7e4e

Please sign in to comment.