Skip to content

Commit

Permalink
fix #176631: Select -> more... selects wrong voice dots
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Feb 22, 2017
1 parent 11ac035 commit d3e1c0b
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()) {
if (e->isChord() || e->isRest() || e->isArticulation() || e->isLyrics() || e->isBeam() || e->isStem() || e->isSlurSegment() || e->isNoteDot()) {
if (p->voice != -1 && p->voice != e->voice())
return;
}
Expand Down

0 comments on commit d3e1c0b

Please sign in to comment.