From: fred Date: Tue, 26 Mar 2002 23:10:51 +0000 (+0000) Subject: lilypond-1.3.47 X-Git-Tag: release/1.5.59~1685 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6224dc697478876d3a8c9d1b99a07ca3361015e0;p=lilypond.git lilypond-1.3.47 --- diff --git a/input/bugs/tuplet-space.ly b/input/bugs/tuplet-space.ly new file mode 100644 index 0000000000..f2ae9e8919 --- /dev/null +++ b/input/bugs/tuplet-space.ly @@ -0,0 +1,9 @@ +% using \times amongst space notes dumps core +\score{ + \context Staff \notes\relative c''< + \times 2/3{ a8 b c } + \times 2/3{ s8\p s s\f } + > + \paper{ + } +} diff --git a/lily/tuplet-spanner.cc b/lily/tuplet-spanner.cc index bfe7fb2c2d..f68d175a0b 100644 --- a/lily/tuplet-spanner.cc +++ b/lily/tuplet-spanner.cc @@ -106,7 +106,7 @@ Tuplet_spanner::do_brew_molecule () const mol.add_molecule (Molecule (b, at)); } - mol.translate_axis (dir * staff_space, Y_AXIS); + //mol.translate_axis (dir * staff_space, Y_AXIS); } return mol; }