This commit is contained in:
ws 2014-11-22 12:03:22 +01:00
parent 66c14cdf4f
commit 802b8006b3
2 changed files with 5 additions and 1 deletions

View file

@ -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;
}

View file

@ -3632,6 +3632,7 @@ void MuseScore::selectSimilarInRange(Element* e)
selectionChanged(ss);
}
}
//---------------------------------------------------------
// selectElementDialog
//---------------------------------------------------------