Skip to content

Commit

Permalink
fix #31201: Ties not correctly formed when adding an interval
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Nov 26, 2014
1 parent 78564d9 commit 609d22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ void Score::cmdAddInterval(int val, const QList<Note*>& nl)
{
startCmd();
for (Note* on : nl) {
Note* note = new Note(*on);
Note* note = new Note(this);
Chord* chord = on->chord();
note->setParent(chord);
int valTmp = val < 0 ? val+1 : val-1;
Expand Down

0 comments on commit 609d22e

Please sign in to comment.