From: Han-Wen Nienhuys Date: Sun, 26 Aug 2007 22:12:09 +0000 (-0300) Subject: Fix #423. X-Git-Tag: release/2.10.33-1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=334b7235ae33ab589554fba5196356c7d9ab3ab8;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 95a891d306..f51d772639 100644 --- a/lily/beam.cc +++ b/lily/beam.cc @@ -423,7 +423,7 @@ Beam::get_beam_segments (Grob *me_grob, Grob **common) Real neighbor_stem_x = 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; }