]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix unwanted whiteout of tied notes in tablature
authorTrevor Daniels <t.daniels@treda.co.uk>
Sat, 2 Jan 2010 23:18:18 +0000 (23:18 +0000)
committerTrevor Daniels <t.daniels@treda.co.uk>
Sat, 2 Jan 2010 23:19:45 +0000 (23:19 +0000)
scm/tablature.scm

index d133217f923491a978ea8890cecd451ce0e5b7dd..ae617bd47ffef752139e4cc20f2d320f983f2ed0 100644 (file)
                                         (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