Skip to content

Commit

Permalink
fix #122396: LYrics Automatic Horizontal Spacing is too tight
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Aug 26, 2016
1 parent 653fc53 commit 7fe2bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/chordrest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@ Shape ChordRest::shape() const
x2 = qMax(x2, x1 + l->bbox().width() + margin);
}
if (x2 > x1)
shape.add(QRectF(x1, 0.0, x2-x1, 0.0));
shape.add(QRectF(x1, 0.0, x2-x1, 1.0));
return shape;
}

Expand Down

0 comments on commit 7fe2bd3

Please sign in to comment.