From: fred Date: Tue, 26 Mar 2002 23:56:40 +0000 (+0000) Subject: lilypond-1.3.93 X-Git-Tag: release/1.5.59~1272 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8d5045ba0f42218c8ed6375228fab0d8bbd3bfb9;p=lilypond.git lilypond-1.3.93 --- diff --git a/lily/volta-spanner.cc b/lily/volta-spanner.cc index 1ce8128d9d..34a4016c28 100644 --- a/lily/volta-spanner.cc +++ b/lily/volta-spanner.cc @@ -66,7 +66,12 @@ Volta_spanner::brew_molecule (SCM smob) Real staff_space = me->paper_l ()->get_var ("staffspace"); Real staff_thick = me->paper_l ()->get_var ("stafflinethickness"); Real half_space = staff_space / 2; - Real left = dynamic_cast(me)->get_broken_left_end_align (); + + /* + the volta spanner is attached to the bar-line, which is moved + to the right. We don't need to compensate for the left edge. + */ + Real left = 0.0; Real w = dynamic_cast(me)->spanner_length () - left - half_space; Real h = staff_space * gh_scm2double (me->get_elt_property ("height")); Real t = staff_thick * gh_scm2double (me->get_elt_property ("thickness"));