From 9be75b7924570f6f70e79a9babb710967f516ec9 Mon Sep 17 00:00:00 2001 From: lasconic Date: Fri, 18 Apr 2014 20:04:07 +0200 Subject: [PATCH] fix #25449: Select all stems for only one voice --- mscore/musescore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mscore/musescore.cpp b/mscore/musescore.cpp index 4307628f1249..665a06c10e08 100644 --- a/mscore/musescore.cpp +++ b/mscore/musescore.cpp @@ -3712,7 +3712,7 @@ static void collectMatch(void* data, Element* e) return; if ((p->staff != -1) && (p->staff != e->staffIdx())) return; - if (e->type() == Element::CHORD || e->type() == Element::REST || e->type() == Element::NOTE || e->type() == Element::LYRICS) { + if (e->type() == Element::CHORD || e->type() == Element::REST || e->type() == Element::NOTE || e->type() == Element::LYRICS || e->type() == Element::STEM) { if (p->voice != -1 && p->voice != e->voice()) return; }