From d3e1c0bd24d930536ae727549cc671674f047264 Mon Sep 17 00:00:00 2001 From: lasconic Date: Wed, 22 Feb 2017 18:52:20 +0100 Subject: [PATCH] fix #176631: Select -> more... selects wrong voice dots --- libmscore/score.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmscore/score.cpp b/libmscore/score.cpp index d21457213a0a..36802925a0ce 100644 --- a/libmscore/score.cpp +++ b/libmscore/score.cpp @@ -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; }