From: Han-Wen Nienhuys Date: Sun, 26 Aug 2007 22:12:09 +0000 (-0300) Subject: Fix #423. X-Git-Tag: release/2.11.31-1~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=dc0b430ffc0df0dabc7618598b9f96bdb79545cf;p=lilypond.git Fix #423. Tune down divisor for minimum beamlet length. This ensures that beamlets don't touch when they are close. --- diff --git a/lily/beam.cc b/lily/beam.cc index 843278aff3..f7cd01f4c9 100644 --- a/lily/beam.cc +++ b/lily/beam.cc @@ -446,7 +446,7 @@ Beam::get_beam_segments (Grob *me_grob, Grob **common) = neighbor_stem->relative_coordinate (commonx, X_AXIS); notehead_width = min (notehead_width, - fabs (neighbor_stem_x - segs[j].stem_x_)/2); + fabs (neighbor_stem_x - segs[j].stem_x_)/2.5); } current.horizontal_[event_dir] += event_dir * notehead_width; }