From 3c33660e3a61acd16317381711c9a8c265a5e65f Mon Sep 17 00:00:00 2001 From: Xavier Scheuer Date: Wed, 9 Mar 2011 15:41:08 +0100 Subject: [PATCH] ly/property-init.ly: remove cautionary accidentals in improvisation improvisationOn removes the stencil of Accidental but did not remove the stencil of AccidentalCautionary . This PATCH fix this (as well as the appropriate reciprocal in improvisationOff ). --- ly/property-init.ly | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ly/property-init.ly b/ly/property-init.ly index 3bed8193a3..2e293352db 100644 --- a/ly/property-init.ly +++ b/ly/property-init.ly @@ -252,11 +252,13 @@ improvisationOn = { \set squashedPosition = #0 \override NoteHead #'style = #'slash \override Accidental #'stencil = ##f + \override AccidentalCautionary #'stencil = ##f } improvisationOff = { \unset squashedPosition \revert NoteHead #'style \revert Accidental #'stencil + \revert AccidentalCautionary #'stencil } -- 2.39.5