Skip to content

Commit

Permalink
fix #18280: Enabling note entry on non pitched staff causes crash
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Dec 10, 2012
1 parent 8883029 commit 58a09d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/chord.cpp
Expand Up @@ -1419,7 +1419,7 @@ void Chord::layout()
// hack for use in palette
//
int n = _notes.size();
for (int i = 0; i < n; ++n) {
for (int i = 0; i < n; i++) {
Note* note = _notes.at(i);
note->layout();
qreal x = 0.0;
Expand Down

0 comments on commit 58a09d0

Please sign in to comment.