Re: [tablatures] snippet "Slides in tablature", NR 2.4.1 |
[ Thread Index |
Date Index
| More lilynet.net/tablatures Archives
]
- To: Patrick Schmidt <p.l.schmidt@xxxxxx>
- Subject: Re: [tablatures] snippet "Slides in tablature", NR 2.4.1
- From: Federico Bruni <fedelogy@xxxxxxxxx>
- Date: Sun, 17 Apr 2011 22:03:13 +0200
- Cc: Valentin Villenave <valentin@xxxxxxxxxxxxx>, lilypond-bug <bug-lilypond@xxxxxxx>, Lily-Devel List <lilypond-devel@xxxxxxx>, tablatures@xxxxxxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:cc:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=MzZWYhBJ8MmPe1JHG/6L/PQAIkDvWRKIvFkU5bqCGDM=; b=PanrpTRm31Cx2cT1zTh22Fm9x3AKQYMcRbDmLZ46Z2avTg7pa2kpzUDE0lkmCtbBJI 8XlnNCbLX2/ExZMpPkORqrayQSGLnP9m8Qalgdohl1XbbkWEpuG2IkPNoDJY2eAyv3br hvNmJ+KWbMrJHX17uAdzImZWBp9p4x0mMSWcI=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=rp9k5BD4z/E4LVR+HEuTXimO3q5+AoonIV6rNnw0m0/ah2PFT3y3rh+M9dLan+B3vx RzuzAYAZkaEoqto4jDxxR8KHO9G93kEFsr3tsNlJr3aSW5vPLqjRjnZWuNKCmFy76xhs UWFysBnIhQZCzGdb6NerO5LQsdLWnqwRM5LSQ=
Il giorno dom, 17/04/2011 alle 21.04 +0200, Patrick Schmidt ha scritto:
> > Last year I found out that I had to set TabNoteHead whiteout
> property to
> > false when I make the TabNoteHead transparent:
> >
> http://lilypond-s-support-for-tablatures.3383434.n2.nabble.com/Re-tie-bug-in-2-13-10-td4291079.html#a4292853
> >
> > I have the suspect that this is no more necessary.
> > Can you confirm it?
> Yes and no: ties are still visible in tab staves when using
> \hideNotes:
They are visible in Staff (and probably in TabStaff just when using
\tabFullNotation).
This change in ly/property-init.ly would fix it:
hideNotes = {
.....
\override Tie #'transparent = ##t
}
unHideNotes = {
....
\revert Tie #'transparent
}
But I guess there's a reason why these lines have not been added (ties
are... mmh, "outside the scope of a note").
However my question was about the whiteout property of TabNoteHead.
IIRC, last year when I made a TabNoteHead transparent I could see a
small white area in place of TabNoteHead, because the whiteout property
of TabNoteHead was set to true by default (my blind guess).
So I had to add \once \override TabNoteHead #'whiteout = ##f to my
snippet.
Now this happens no more, the override is no more needed. I guess that's
because now the whiteout property is handled differently?
Where can I check it?