Skip to content

Commit

Permalink
Merge pull request #2644 from heuchi/106916_LyricsLinesDontShow
Browse files Browse the repository at this point in the history
fix #106916: Lyrics don't have underscores or hyphens
  • Loading branch information
lasconic committed Jun 3, 2016
2 parents ded90e1 + 7b35194 commit 62c5ef2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions libmscore/layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3460,15 +3460,13 @@ bool Score::collectPage(LayoutContext& lc)
}
sp->layout();
}
}

#if 0
for (Spanner* sp : _unmanagedSpanner) {
//if (sp->tick() >= etick || sp->tick2() < stick)
// continue;
sp->layout();
for (Spanner* sp : _unmanagedSpanner) {
if (sp->tick() >= etick || sp->tick2() < stick)
continue;
sp->layout();
}
}
#endif

page->rebuildBspTree();
lc.pageChanged = lc.systemChanged || (lc.pageOldSystem != (page->systems().empty() ? 0 : page->systems().back()));
Expand Down

0 comments on commit 62c5ef2

Please sign in to comment.