]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/consistently-left-aligned-bar-numbers.ly
Imported Upstream version 2.18.0
[lilypond.git] / Documentation / snippets / consistently-left-aligned-bar-numbers.ly
index 46e86777edef84af77a71fca8e6c1d21e6cdc9f6..f2b61e8e8dbd9ef0eb9b1c599b1965c69de8bf9d 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.16.0"
+\version "2.17.6"
 
 \header {
   lsrtags = "rhythms"
@@ -19,8 +19,8 @@ first bar number following line breaks.
 } % begin verbatim
 
 consistentlyLeftAlignedBarNumbers = {
-  \override Score.BarNumber #'break-visibility = #end-of-line-invisible
-  \override Score.BarNumber #'self-alignment-X =
+  \override Score.BarNumber.break-visibility = #end-of-line-invisible
+  \override Score.BarNumber.self-alignment-X =
     #(lambda (grob)
        (let ((break-dir (ly:item-break-dir grob)))
          (if (= break-dir RIGHT) RIGHT LEFT)))