]> git.donarmstrong.com Git - lilypond.git/commitdiff
''
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 9 Apr 2002 09:36:01 +0000 (09:36 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 9 Apr 2002 09:36:01 +0000 (09:36 +0000)
ChangeLog
lily/tuplet-bracket.cc

index 4ff23b3a4303c14ce87d3f5003ec49ec052acc96..3c053ed8653cddb3b904dd1da6be491fef2ae814 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-09  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * lily/tuplet-bracket.cc (after_line_breaking): bugfix for forced
+       direction tuplets on beams.
+
 2002-04-08  Chris Jackson <chris@fluffhouse.org.uk>
 
        * lilypond-indent.el: Bugfix of indentation of final point in buffer
index bdb6ed922c011d0f1b5d416af28097dac7787046..08fa3170629f81082fb26cdc008b783598cb6567 100644 (file)
@@ -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);
     }