Skip to content

Commit

Permalink
fix #39036
Browse files Browse the repository at this point in the history
  • Loading branch information
wschweer committed Nov 22, 2014
1 parent 66c14cd commit 802b800
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libmscore/score.cpp
Expand Up @@ -2932,7 +2932,10 @@ void Score::collectMatch(void* data, Element* e)
if ((p->staffStart != -1)
&& ((p->staffStart > e->staffIdx()) || (p->staffEnd <= e->staffIdx())))
return;
if (e->type() == Element::Type::CHORD || e->type() == Element::Type::REST || e->type() == Element::Type::NOTE || e->type() == Element::Type::LYRICS || e->type() == Element::Type::STEM) {
if (e->type() == Element::Type::CHORD || e->type() == Element::Type::REST
|| e->type() == Element::Type::NOTE || e->type() == Element::Type::LYRICS
|| e->type() == Element::Type::BEAM
|| e->type() == Element::Type::STEM) {
if (p->voice != -1 && p->voice != e->voice())
return;
}
Expand Down
1 change: 1 addition & 0 deletions mscore/musescore.cpp
Expand Up @@ -3632,6 +3632,7 @@ void MuseScore::selectSimilarInRange(Element* e)
selectionChanged(ss);
}
}

//---------------------------------------------------------
// selectElementDialog
//---------------------------------------------------------
Expand Down

0 comments on commit 802b800

Please sign in to comment.