]> git.donarmstrong.com Git - lilypond.git/commitdiff
(process_music): call
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 24 Aug 2005 14:30:57 +0000 (14:30 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 24 Aug 2005 14:30:57 +0000 (14:30 +0000)
Align_interface::set_axis(). This forces #'elements to be ordered,
preventing random vertical reordering  of staves.

Documentation/topdocs/NEWS.tely
input/regression/font-name.ly
lily/vertical-align-engraver.cc

index a94076456e80e078bc2ce4ca1b43461798586693..e128204db8bc12359ce15411e138c99ce0d18285 100644 (file)
@@ -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]
index 19b6ffdba8812fe0a7f09fef1eb95f770b64bd7f..fdb09994ff2021d873b7d40088f6b6d29781eff9 100644 (file)
@@ -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"
index e9ab261d74fb7df6449eccc0ee940ee0a06c1ed7..d711396a6f7a6db8ea321b06dc328ec3d60b1096 100644 (file)
@@ -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);
     }
 }