From: Han-Wen Nienhuys Date: Tue, 17 Sep 2002 09:54:56 +0000 (+0000) Subject: whoops. Set bound in the correct X-Git-Tag: release/1.6.4~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=953648347c0da0ebc0a4b04da6ebbe2c048897cc;p=lilypond.git whoops. Set bound in the correct spanner. --- diff --git a/ChangeLog b/ChangeLog index 4bc8e2c4dc..bc379584e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-09-17 Han-Wen Nienhuys + + * lily/text-spanner-engraver.cc: whoops. Set bound in the correct + spanner. + 2002-09-15 Han-Wen Nienhuys * Documentation/user/refman.itely: patch by Graham Percival diff --git a/lily/text-spanner-engraver.cc b/lily/text-spanner-engraver.cc index e0d1c5f0a7..6bd4ce3bab 100644 --- a/lily/text-spanner-engraver.cc +++ b/lily/text-spanner-engraver.cc @@ -40,8 +40,6 @@ private: }; - - Text_spanner_engraver::Text_spanner_engraver () { finished_ = 0; @@ -146,7 +144,7 @@ Text_spanner_engraver::typeset_all () if (!finished_->get_bound (RIGHT)) { Grob* e = unsmob_grob (get_property ("currentMusicalColumn")); - span_->set_bound (RIGHT, e); + finished_->set_bound (RIGHT, e); } typeset_grob (finished_); finished_ = 0;