Skip to content

Commit

Permalink
fix #25449: Select all stems for only one voice
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Apr 18, 2014
1 parent 0d6e381 commit 9be75b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/musescore.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9be75b7

Please sign in to comment.