Skip to content

Commit

Permalink
fix #53081: click in repitch mode
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSabatella committed May 31, 2015
1 parent 66cbc77 commit b5903e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libmscore/edit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,10 @@ void Score::putNote(const QPointF& pos, bool replace)
qDebug("cannot put note here, get position failed");
return;
}
putNote(p, replace);
if (inputState().repitchMode())
repitchNote(p, replace);
else
putNote(p, replace);
}

void Score::putNote(const Position& p, bool replace)
Expand Down

0 comments on commit b5903e9

Please sign in to comment.