Skip to content

Commit

Permalink
fix #178271: Select->more... selects tuplets in all voices
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Feb 28, 2017
1 parent 33bf0a3 commit 576c6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/score.cpp
Expand Up @@ -2930,7 +2930,7 @@ void Score::collectMatch(void* data, Element* e)
if ((p->staffStart != -1)
&& ((p->staffStart > e->staffIdx()) || (p->staffEnd <= e->staffIdx())))
return;
if (e->isChord() || e->isRest() || e->isArticulation() || e->isLyrics() || e->isBeam() || e->isStem() || e->isSlurSegment() || e->isNoteDot() || e->isFingering()) {
if (e->isChord() || e->isRest() || e->isArticulation() || e->isLyrics() || e->isBeam() || e->isStem() || e->isSlurSegment() || e->isNoteDot() || e->isFingering() || e->isTuplet()) {
if (p->voice != -1 && p->voice != e->voice())
return;
}
Expand Down

0 comments on commit 576c6c4

Please sign in to comment.