From: Joe Neeman Date: Tue, 3 Jul 2007 00:01:17 +0000 (+1000) Subject: Fix note-spacing corrections X-Git-Tag: release/2.11.28-1~21^2~17 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9afa2e6d68eb4faf6e93505c18c855c46f84e370;p=lilypond.git Fix note-spacing corrections --- diff --git a/input/regression/dynamics-hairpin-length.ly b/input/regression/dynamics-hairpin-length.ly index ef00c6418f..c7f280bfc6 100644 --- a/input/regression/dynamics-hairpin-length.ly +++ b/input/regression/dynamics-hairpin-length.ly @@ -1,7 +1,7 @@ \header { texidoc = "Hairpins extend to the extremes of the bound if there - is no adjacent hairpin of dynamic-text. If there is, the hairpin + is no adjacent hairpin or dynamic-text. If there is, the hairpin extends to the center of the column or the bound of the text respectively." diff --git a/input/regression/fill-line-test.ly b/input/regression/fill-line-test.ly index 888390e655..66b9512642 100644 --- a/input/regression/fill-line-test.ly +++ b/input/regression/fill-line-test.ly @@ -3,7 +3,7 @@ \header { texidoc = "The fill-line markup command should align texts in - columns. For examlpe, the characters in the center should form one + columns. For example, the characters in the center should form one column." } diff --git a/input/regression/finger-chords.ly b/input/regression/finger-chords.ly index bf000a7061..3b966ebd72 100644 --- a/input/regression/finger-chords.ly +++ b/input/regression/finger-chords.ly @@ -2,7 +2,7 @@ \version "2.10.0" \header { - texidoc = "With the new chord syntax, it is possible to associate + texidoc = "It is possible to associate fingerings uniquely with notes. This makes it possible to add horizontal fingerings to notes. diff --git a/lily/note-spacing-engraver.cc b/lily/note-spacing-engraver.cc index 4116226517..d253eb81d9 100644 --- a/lily/note-spacing-engraver.cc +++ b/lily/note-spacing-engraver.cc @@ -104,7 +104,8 @@ Note_spacing_engraver::stop_translation_timestep () { if (last_spacing_ && last_spacing_parent_context_ - && last_spacing_parent_context_ == context ()->get_parent_context ()) + && last_spacing_parent_context_ == context ()->get_parent_context () + && !unsmob_grob_array (last_spacing_->get_object ("right-items"))) { Grob *sep = unsmob_grob (get_property ("currentCommandColumn")); if (sep)