fix remaining issue when shift selecting a measure before a measure with first note selected. see ed95870260 (commitcomment-11440058)

This commit is contained in:
lasconic 2015-05-30 18:27:14 +02:00
parent 989a4c0768
commit 66cbc77363

View file

@ -2841,7 +2841,7 @@ void Score::selectRange(Element* e, int staffIdx)
Segment* endSegment = m->last();
if (tick < oetick) {
startSegment = m->tick2segment(tick);
if (etick < oetick)
if (etick <= oetick)
endSegment = cr->nextSegmentAfterCR(Segment::Type::ChordRest
| Segment::Type::EndBarLine
| Segment::Type::Clef);