Skip to content

Commit

Permalink
fix typo, remove time signature, generated elements from range selection
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Aug 20, 2014
1 parent 0554077 commit e150fb5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libmscore/edit.cpp
Expand Up @@ -1937,8 +1937,9 @@ Lyrics* Score::addLyrics()
}

//---------------------------------------------------------
// addLyrics
// addHairpin
//---------------------------------------------------------

Hairpin* Score::addHairpin(bool decrescendo, int tickStart, int ticks, int track)
{
Hairpin* pin = new Hairpin(this);
Expand Down
4 changes: 4 additions & 0 deletions libmscore/select.cpp
Expand Up @@ -431,6 +431,10 @@ void Selection::updateSelectedElements()
Element* e = s->element(st);
if (!e)
continue;
if (e->generated())
continue;
if (e->type() == Element::Type::TIMESIG)
continue;
if (e->isChordRest()) {
ChordRest* cr = static_cast<ChordRest*>(e);
for (Element* e : cr->lyricsList()) {
Expand Down

0 comments on commit e150fb5

Please sign in to comment.