]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/harp-pedals.scm
Allow markup lists to be composed at run-time
[lilypond.git] / scm / harp-pedals.scm
index 8fa02fb5a041204f62bfa8f6be81bd06cc2f0247..ce756ddfe22a34a69bc58524092f8a0314712dcb 100644 (file)
@@ -121,10 +121,13 @@ divider) and @code{space-after-divider} (box spacing after the divider).
         (final-x (car result))
         (stencils (cdr result)))
     ; Add the horizontal line and combine all stencils:
-    (apply ly:stencil-add
-      (cons
-        (make-line-stencil line-width 0 0 final-x 0)
-        stencils))))
+    (box-stencil
+      (apply ly:stencil-add
+        (cons
+          (make-line-stencil line-width 0 0 final-x 0)
+          stencils))
+        0.0
+        0.0)))
 
 ;; Parse the harp pedal definition string into list of directions (-1/0/1), #\o and #\|
 (define (harp-pedals-parse-string definition-string)