lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Tie settings question


From: Karol Majewski
Subject: Re: Tie settings question
Date: Fri, 21 Oct 2016 23:05:36 +0200

Yes, now it does what I want. Thx a lot. This is the final code - without color 
indicators:

hint =
\override TieColumn.before-line-breaking =
 #(lambda (grob)
    (let ((ties (ly:grob-array->list (ly:grob-object grob 'ties))))
    (if (> (length ties) 1)
        (for-each
          (lambda (tie)
            (ly:grob-set-nested-property! tie '(details skyline-padding) 5))
          ties))))

\relative c' {
 \hint
 <c e g c e>4~
 <c e g c e>
 c8~ c4.
}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]