Any ideas as to why the staff-affinity option is being ignored here?
\layout {
\context {
\Dynamics
\consists Horizontal_bracket_engraver
\override HorizontalBracket.direction = #UP
\consists Note_heads_engraver
\consists Rhythmic_column_engraver
\override NoteHead.stencil = #(ly:make-stencil '() '(0 . 0) '(0 . 0))
}
}
brackets = \new Dynamics {
\override VerticalAxisGroup.staff-affinity = #DOWN
c4 c\startGroup c c\stopGroup | c\startGroup c c\stopGroup c
}
Produced output:
[image.png]
Setting staff-affinity = #DOWN should mean that the brackets appear above the
staff instead of below, right?
-Fennel