From: Han-Wen Nienhuys Date: Wed, 24 Aug 2005 14:30:57 +0000 (+0000) Subject: (process_music): call X-Git-Tag: release/2.7.8~29 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fe5cedba65245ff43a77d434aef29271c39dc945;p=lilypond.git (process_music): call Align_interface::set_axis(). This forces #'elements to be ordered, preventing random vertical reordering of staves. --- diff --git a/Documentation/topdocs/NEWS.tely b/Documentation/topdocs/NEWS.tely index a94076456e..e128204db8 100644 --- a/Documentation/topdocs/NEWS.tely +++ b/Documentation/topdocs/NEWS.tely @@ -257,7 +257,7 @@ showLastLength = R1*5 will render only the last five measures (assuming 4/4 time signature) of a piece. -@itemy @textanchor{simple-melismata} +@item @textanchor{simple-melismata} Melismata can be specified simply in the lyrics now, eg. @lilypond[relative=1,verbatim,fragment] diff --git a/input/regression/font-name.ly b/input/regression/font-name.ly index 19b6ffdba8..fdb09994ff 100644 --- a/input/regression/font-name.ly +++ b/input/regression/font-name.ly @@ -13,7 +13,7 @@ without size specification." { - \override Staff.TimeSignature #'font-name = #"Times" + \override Staff.TimeSignature #'font-name = #"Times New Roman" \time 3/4 \set Score.skipBars = ##t \override Staff.MultiMeasureRestText #'font-name = #"LuxiMono" diff --git a/lily/vertical-align-engraver.cc b/lily/vertical-align-engraver.cc index e9ab261d74..d711396a6f 100644 --- a/lily/vertical-align-engraver.cc +++ b/lily/vertical-align-engraver.cc @@ -69,6 +69,7 @@ Vertical_align_engraver::process_music () { valign_ = make_spanner ("VerticalAlignment", SCM_EOL); valign_->set_bound (LEFT, unsmob_grob (get_property ("currentCommandColumn"))); + Align_interface::set_axis (valign_, Y_AXIS); } }