Hi Paul,

> If this change was made can someone tell me how to correct this code in
> 2.15.17?
>
> #(define (scoop-stencil grob)
>  (ly:stencil-combine-at-edge
>   (ly:note-head::print grob) 0 -1
>   (grob-interpret-markup grob
>    (markup #:with-dimensions '(0 . 0) '(0 . 0)
>     #:translate '( -2 . -2) #:musicglyph "brackettips.up" )) 0 0 )
> )
>

Simply remove the last zero:

 #(define (scoop-stencil grob)
 (ly:stencil-combine-at-edge
  (ly:note-head::print grob) 0 -1
  (grob-interpret-markup grob
   (markup #:with-dimensions '(0 . 0) '(0 . 0)
    #:translate '( -2 . -2) #:musicglyph "brackettips.up" )) 0)
)

-David
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to