From 378c4c70504e4aa1141970050f20865da0c2f615 Mon Sep 17 00:00:00 2001 From: Mike Solomon Date: Thu, 29 Sep 2011 14:17:14 +0200 Subject: [PATCH] Fixes StemTremolo Y-offset for beamed stems (Issue 1929). --- lily/stem-tremolo.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lily/stem-tremolo.cc b/lily/stem-tremolo.cc index a45ae1182a..9f21c466c3 100644 --- a/lily/stem-tremolo.cc +++ b/lily/stem-tremolo.cc @@ -265,7 +265,8 @@ Stem_tremolo::y_offset (Grob *me, bool pure) Real end_y = stem->extent (stem, Y_AXIS)[stemdir] - - stemdir * max (beam_count, 1) * beam_translation; + - stemdir * max (beam_count, 1) * beam_translation + - Stem::beam_end_corrective (stem); if (!beam && Stem::duration_log (stem) >= 3) { -- 2.39.5