X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flyric-extender.cc;h=a809f892caf8bc0ec7999aa966b2b047caf794e1;hb=447a815de9e11223d731f4f7ecfd66f982d39fc0;hp=9cb03b14ec5fe9867e71d0365c714ed5bdaeb056;hpb=675533acf58b9b863adc830f175696735ca6dc95;p=lilypond.git diff --git a/lily/lyric-extender.cc b/lily/lyric-extender.cc index 9cb03b14ec..a809f892ca 100644 --- a/lily/lyric-extender.cc +++ b/lily/lyric-extender.cc @@ -2,7 +2,7 @@ lyric-extender.cc -- implement Lyric_extender source file of the GNU LilyPond music typesetter - (c) 1998--2002 Jan Nieuwenhuizen + (c) 1998--2003 Jan Nieuwenhuizen Han-Wen Nienhuys */ @@ -21,17 +21,27 @@ SCM Lyric_extender::brew_molecule (SCM smob) { Spanner *sp = unsmob_spanner (smob); + Item* l = sp->get_bound (LEFT); + Item*r = sp->get_bound (RIGHT); + + Real leftext = l->extent (l, X_AXIS).length (); - // ugh: refp - Real leftext = sp->get_bound (LEFT)->extent (sp->get_bound (LEFT), - X_AXIS).length (); - - Real sl = sp->paper_l ()->get_var ("linethickness"); + Real sl = sp->get_paper ()->get_var ("linethickness"); Real righttrim = 0.5; // default to half a space gap on the right - SCM righttrim_scm = sp->get_grob_property ("right-trim-amount"); - if (gh_number_p (righttrim_scm)) { - righttrim = gh_scm2double (righttrim_scm); - } + + + /* + If we're broken, we shouldn't extend past the end of the line. + */ + if (r->break_status_dir () == CENTER) + { + SCM righttrim_scm = sp->get_grob_property ("right-trim-amount"); + if (gh_number_p (righttrim_scm)) + { + righttrim = gh_scm2double (righttrim_scm); + } + } + // The extender can exist in the word space of the left lyric ... SCM space = sp->get_bound (LEFT)->get_grob_property ("word-space"); if (gh_number_p (space))