Skip to content

Commit

Permalink
Merge pull request #5449 from mgavioli/fix_293998_FigB_cont_lines
Browse files Browse the repository at this point in the history
Fix #293998 : Fig. Bass continuation lines disappearing
  • Loading branch information
dmitrio95 authored and anatoly-os committed Nov 14, 2019
1 parent e3a5734 commit be4e473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/figuredbass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ void FiguredBass::read(XmlReader& e)
while (e.readNextStartElement()) {
const QStringRef& tag(e.name());
if (tag == "ticks")
setTicks(Fraction::fromTicks(e.readInt()));
setTicks(e.readFraction());
else if (tag == "onNote")
setOnNote(e.readInt() != 0l);
else if (tag == "FiguredBassItem") {
Expand Down

0 comments on commit be4e473

Please sign in to comment.