Comment #2 on issue 4192 by tdanielsmusic: breath marks placed incorrectly when using the ly/satb.ly template
https://code.google.com/p/lilypond/issues/detail?id=4192

A bit of investigation shows that the ly/satb.ly template simply happens to trigger the bug: it is not in itself at fault, although from the way it is constructed it will frequently suffer from it.

The bug is: if \breathe commands and spacer rests are placed in parallel with music in at least two staves, the breath marks can be misplaced if there happens to be no music in the first of the staves:

\version "2.19.15"

\paper { ragged-right = ##f }

Breaths = { s8 s\breathe s s }

Music = \relative {
  \time 2/4
  c''8 c c c
}

\score { <<
  \new Staff {
    \Breaths
  }
  \new Staff <<
    \Breaths
    \Music
  >>
}

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

Reply via email to