Le 27/12/2021 à 23:01, Kieren MacMillan a écrit :
Hi all,

Is this expected and/or known behaviour?

\version "2.21"
{ c'1 \tweak font-size 5 \parenthesize \breathe \break c'1 }

I see that it's fixed in 2.23 [possibly as a side-effect of other changes].
What's the best workaround for 2.21 [which I need to use until the 
edition-engraver is updated]?

Thanks,
Kieren.


commit 6df0e177b444a8f9d008cff92b8b92e39cf51727
Author: Jean Abou Samra <j...@abou-samra.fr>
Date:   Thu Aug 5 23:57:43 2021 +0200

    Support parentheses and balloons on breakable items

    This uses the same technique as footnotes, inheriting break-visibility.
    The call to grob::inherit-parent-property is replaced with a new
    callback generator, sticky-grob-interface::inherit-property, which
    is equivalent but speaks for itself better.

    Closes #5118.


In 2.22, you can try

\version "2.22.1"

parenthesizeBigBreathe =
  \tweak font-size 5
  \tweak ParenthesesItem.break-visibility ##(#t #t #f)
  \tweak ParenthesesItem.non-musical ##t
  \tweak space-alist.staff-bar #'(minimum-space . 2)
  \parenthesize
  \breathe

{
  c'1 \parenthesizeBigBreathe \break c'1
}


Regards,
Jean


Reply via email to