>From 3796663f4a6af4f5d7ea3022592c3ec8e72716b1 Mon Sep 17 00:00:00 2001 From: Urs Liska Date: Mon, 29 Apr 2013 15:18:28 +0200 Subject: [PATCH] doc-snippet: Fix 'transparent snippet When creating cross-voice ties as in the snippet one has to also make the flag transparent (in this example). --- ...ject-invisible-with-the-transparent-property.ly | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documentation/snippets/new/making-an-object-invisible-with-the-transparent-property.ly b/Documentation/snippets/new/making-an-object-invisible-with-the-transparent-property.ly index bfe2e1c..d168335 100644 --- a/Documentation/snippets/new/making-an-object-invisible-with-the-transparent-property.ly +++ b/Documentation/snippets/new/making-an-object-invisible-with-the-transparent-property.ly @@ -13,7 +13,7 @@ part in collisions, and slurs, ties and beams can be attached to it. This snippet demonstrates how to connect different voices using ties. Normally, ties only connect two notes in the same voice. By introducing a tie in a different voice, and blanking the first up-stem -in that voice, the tie appears to cross voices. +and flag in that voice, the tie appears to cross voices. " doctitle = "Making an object invisible with the 'transparent property" @@ -24,9 +24,11 @@ in that voice, the tie appears to cross voices. << { \once \override Stem.transparent = ##t + \once \override Flag.transparent = ##t \once \override Stem.length = #8 b8 ~ b\noBeam \once \override Stem.transparent = ##t + \once \override Flag.transparent = ##t \once \override Stem.length = #8 g8 ~ g\noBeam } -- 1.7.9.5