jpatk wrote:
> 
> I would like to color the initial repeat bar line of a volta.  
> 

Hi,

try:

\version "2.14.1"

#(define (color-at-line-begin g)
  (if (and (ly:item? g)
           (equal? (ly:item-break-dir g) RIGHT))
      (ly:grob-set-property! g 'color red)))

\relative g' {
        \repeat volta 2 { a b c d }
        \break
        \once\override Staff.BarLine #'after-line-breaking =
#color-at-line-begin
        \repeat volta 2 { d c b a }
} 

Greetings,
  Harm

-- 
View this message in context: 
http://old.nabble.com/how-to-color-a-repeat-bar-line--tp32182164p32182316.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to