From 11d89fa05ae2d9323fe7425659462a50e1b9f0d6 Mon Sep 17 00:00:00 2001 From: Trevor Daniels Date: Sat, 2 Jan 2010 23:18:18 +0000 Subject: [PATCH] Fix unwanted whiteout of tied notes in tablature --- scm/tablature.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 -- 2.39.2