Please consider this example.
```tex
\version "2.25.11"
music = {
c'1
\tempo "T-note" c'1
}
\markup { time-signature }
{
\override Score.MetronomeMark.break-align-symbols =
#'(time-signature)
\music
}
\markup { time-signature, key-signature }
{
\override Score.MetronomeMark.break-align-symbols =
#'(time-signature key-signature)
\music
}
\paper {
ragged-right = ##f
}
```
I don't understand why the addition of `key-signature` to the
`break-align-symbols` list makes 'T-note' left-align to the bar line —
there is no key signature at this point, right? IMHO, the correct
behaviour would be that 'T-note' is still aligned to the note.
What am I missing?
Werner