You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When non-rhythmic elements (usually living in the staff context?) are highlighted with a span the outcome will be visible in the whole score:
\include"oll-core/package.ily"\loadModule scholarly.annotate
one = {
c'1 c'1
}
two = {
\clef bass
c1\lilypondIssue"It is not possible to mark just *this* staff's barline"\bar"|"
c1
}
\score {
<<
\newStaff\one\newStaff\two
>>
}
This seems to be related to the fact that these items are determined as 'non-rhythmic here:
does work with the MWE, but it seems not the way to go forward.
Instead I'll have to see if I can avoid using (overrideProperty), maybe by reviewing the whole design of the engraver (what is done at what point in time?).
When non-rhythmic elements (usually living in the staff context?) are highlighted with a span the outcome will be visible in the whole score:
This seems to be related to the fact that these items are determined as
'non-rhythmic
here:https://github.com/openlilylib/stylesheets/blob/master/span/module.ily#L482-L488
and then assigned the music-type
'once
which makes them applied throughoverrideProperty
here:https://github.com/openlilylib/stylesheets/blob/master/span/module.ily#L206-L211
For some reason
overrideProperty
behaves that way, as opposed to\once \override
:The text was updated successfully, but these errors were encountered: