From dc0b430ffc0df0dabc7618598b9f96bdb79545cf Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 26 Aug 2007 19:12:09 -0300 Subject: [PATCH] Fix #423. Tune down divisor for minimum beamlet length. This ensures that beamlets don't touch when they are close. --- lily/beam.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5