Skip to content

Commit

Permalink
optimize svg export a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Jan 20, 2016
1 parent cc3b529 commit d54fb01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2566,7 +2566,7 @@ bool MuseScore::saveSvg(Score* score, const QString& saveName)
for (MeasureBase* mb = s->firstMeasure(); mb != 0; mb = s->nextMeasure(mb)) {
if (!static_cast<Measure*>(mb)->visible(i)) {
byMeasure = true;
continue;
break;
}
}
if (byMeasure) { // Draw visible staff lines by measure
Expand Down

0 comments on commit d54fb01

Please sign in to comment.