Skip to content

Commit

Permalink
Fix heavy barline width
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Oct 25, 2020
1 parent 0053122 commit 973714b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/barline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ qreal BarLine::layoutWidth(Score* score, BarLineType type)
w = score->styleP(Sid::doubleBarWidth) + score->styleP(Sid::doubleBarDistance);
break;
case BarLineType::DOUBLE_HEAVY:
w = score->styleP(Sid::endBarWidth) * 2 + score->styleP(Sid::endBarDistance);
w = score->styleP(Sid::endBarWidth) + score->styleP(Sid::endBarDistance);
break;
case BarLineType::END_START_REPEAT:
w = score->styleP(Sid::endBarDistance) * 2
Expand Down

0 comments on commit 973714b

Please sign in to comment.