From: Jan Nieuwenhuizen Date: Mon, 24 Apr 2000 21:56:11 +0000 (+0200) Subject: patch::: 1.3.46.jcn1: jcn1 X-Git-Tag: release/1.3.47~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f15339671aba0c14afaab9e2524ea3ee53c2dab6;p=lilypond.git patch::: 1.3.46.jcn1: jcn1 --- diff --git a/VERSION b/VERSION index c46c2dd215..358ef34a53 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=3 PATCH_LEVEL=46 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=jcn1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. 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; }