Skip to content

Commit

Permalink
Merge pull request #4736 from mattmcclinch/fix-build-3feb678
Browse files Browse the repository at this point in the history
fix build after commit 3feb678
  • Loading branch information
anatoly-os committed Feb 27, 2019
2 parents 3feb678 + 58e76bb commit c8dece2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/paste.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ void Score::pasteChordRest(ChordRest* cr, const Fraction& t, const Interval& src
// find out if the chordrest was only partially contained in the copied range
bool partialCopy = false;
if (cr->isRepeatMeasure())
partialCopy = toRepeatMeasure(cr)->actualDuration() != measure->len();
partialCopy = toRepeatMeasure(cr)->actualTicks() != measure->ticks();
else if (!isGrace && !cr->tuplet())
partialCopy = cr->durationTypeTicks() != cr->actualTicks();

Expand Down

0 comments on commit c8dece2

Please sign in to comment.