From: Trevor Daniels Date: Sat, 2 Jan 2010 23:18:18 +0000 (+0000) Subject: Fix unwanted whiteout of tied notes in tablature X-Git-Tag: release/2.13.11-1~106^2~10 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=11d89fa05ae2d9323fe7425659462a50e1b9f0d6;p=lilypond.git Fix unwanted whiteout of tied notes in tablature --- diff --git a/scm/tablature.scm b/scm/tablature.scm index d133217f92..ae617bd47f 100644 --- a/scm/tablature.scm +++ b/scm/tablature.scm @@ -199,10 +199,14 @@ (lambda (grob) (parenthesize-tab-note-head grob)))) ;; tab note head is invisible - (ly:grob-set-property! tied-tab-note-head 'transparent #t))) + (begin + (ly:grob-set-property! tied-tab-note-head 'transparent #t) + (ly:grob-set-property! tied-tab-note-head 'whiteout #f)))) ;; tie is not split -> make fret number invisible - (ly:grob-set-property! tied-tab-note-head 'transparent #t)))) + (begin + (ly:grob-set-property! tied-tab-note-head 'transparent #t) + (ly:grob-set-property! tied-tab-note-head 'whiteout #f))))) ;; repeat ties occur within alternatives in a repeat construct; ;; TabNoteHead #'details handles the appearance in this case