[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Lilypond-auto] Issue 3520 in lilypond: Repeat bar lines omitted if
From: |
lilypond |
Subject: |
Re: [Lilypond-auto] Issue 3520 in lilypond: Repeat bar lines omitted if Default_bar_line_engraver moved to Staff context |
Date: |
Tue, 27 Aug 2013 20:15:50 +0000 |
Comment #1 on issue 3520 by address@hidden: Repeat bar lines omitted
if Default_bar_line_engraver moved to Staff context
http://code.google.com/p/lilypond/issues/detail?id=3520
Solved by moving the "Repeat_acknowledge_engraver" from the Score to the
Staff context. Also, in order to have the last bar line appearing
(\bar "|." in the code above), the "Timing_translator" should be also moved
from the Score to the Staff context:
\version "2.17.24"
A = {
\time 2/4
c'4 e' \repeat volta 2 {g' c''} e'' g'' \bar "|."
}
\score {
\new Staff {
\A
}
\layout {
\context { \Score
\remove "Timing_translator"
\remove "Default_bar_line_engraver"
\remove "Repeat_acknowledge_engraver"
}
\context { \Staff
\consists "Timing_translator"
\consists "Default_bar_line_engraver"
\consists "Repeat_acknowledge_engraver"
}
}
}
--
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