Skip to content

Commit

Permalink
fix #20880
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed May 3, 2013
1 parent 119ccd6 commit 46d9b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/chord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,7 @@ void Chord::layout()
if (accidental) {
// qreal minNoteDistance = score()->styleS(ST_minNoteDistance).val() * _spatium;
// x = accidental->x() + x - minNoteDistance;
x = accidental->x();
x = accidental->x() + note->x();
}
if (x < lx)
lx = x;
Expand Down

0 comments on commit 46d9b1b

Please sign in to comment.