]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix #423.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 26 Aug 2007 22:12:09 +0000 (19:12 -0300)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 26 Aug 2007 22:12:09 +0000 (19:12 -0300)
Tune down divisor for minimum beamlet length. This ensures that
beamlets don't touch when they are close.

lily/beam.cc

index 843278aff38e8b8f97c645ba73d24ed3f329ab6b..f7cd01f4c95daf261e19925f2730003365784ac7 100644 (file)
@@ -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;
                    }