From 997ac4c9dcb3e40480583f7f77fcac9b45cc08b6 Mon Sep 17 00:00:00 2001 From: Matthias Neeracher Date: Fri, 15 Aug 2008 13:26:06 +0000 Subject: [PATCH] Automatic line breaking / manual page breaks --- Sources/VLLilypondWriter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/VLLilypondWriter.cpp b/Sources/VLLilypondWriter.cpp index f5df7ba..7a83404 100644 --- a/Sources/VLLilypondWriter.cpp +++ b/Sources/VLLilypondWriter.cpp @@ -101,6 +101,7 @@ void VLLilypondWriter::VisitMeasure(size_t m, VLProperties & p, VLMeasure & meas } else if (meas.fBreak & VLMeasure::kNewPage) { fAccum += fIndent+"\\pageBreak\n"; hasBarLine = true; + fNumPickup = m; } else if (meas.fBreak & VLMeasure::kNewSystem) { fAccum += fIndent+"\\break\n"; hasBarLine = true;