]> 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:14:34 +0000 (19:14 -0300)
Tune down divisor for minimum beamlet length. This ensures that
beamlets don't touch when they are close.

lily/beam.cc

index 95a891d30667c02f32ef932499251c7827f23de7..f51d772639362e6f91f5c2289bea7c3e56ac033c 100644 (file)
@@ -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;
                    }