From: Han-Wen Nienhuys Date: Tue, 9 Apr 2002 09:36:01 +0000 (+0000) Subject: '' X-Git-Tag: release/1.5.52~14 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2b77f085114a0aa3af207baab922994dcf59a122;p=lilypond.git '' --- diff --git a/ChangeLog b/ChangeLog index 4ff23b3a43..3c053ed865 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-04-09 Han-Wen Nienhuys + + * lily/tuplet-bracket.cc (after_line_breaking): bugfix for forced + direction tuplets on beams. + 2002-04-08 Chris Jackson * lilypond-indent.el: Bugfix of indentation of final point in buffer diff --git a/lily/tuplet-bracket.cc b/lily/tuplet-bracket.cc index bdb6ed922c..08fa317062 100644 --- a/lily/tuplet-bracket.cc +++ b/lily/tuplet-bracket.cc @@ -399,8 +399,12 @@ Tuplet_bracket::after_line_breaking (SCM smob) bool equally_long = false; Grob * par_beam = parallel_beam (me, column_arr, &equally_long); + /* + We follow the beam only if there is one, and we are next to it. + */ Real dy, offset; - if (!par_beam) + if (!par_beam + || Directional_element_interface::get (par_beam) != dir) { calc_position_and_height (me,&offset,&dy); }