From: jan Date: Fri, 31 May 2002 22:31:32 +0000 (+0000) Subject: (quanting): Increase REGION_SIZE to 4 by default. X-Git-Tag: release/1.5.60~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=428b3ad90f7c3cd539954ecc5150135ba138a363;p=lilypond.git (quanting): Increase REGION_SIZE to 4 by default. While we'd rather not want to pay the performance penalty, we certainly don't want silly bugs. This should be looked into. --- diff --git a/ChangeLog b/ChangeLog index 8f67e14163..5b37520de1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-01 Jan Nieuwenhuizen + + * lily/beam.cc (quanting): Increase REGION_SIZE to 4 by default. + While we'd rather not want to pay the performance penalty, we + certainly don't want silly bugs. This should be looked into. + 2002-05-31 Jan Nieuwenhuizen * stepmake/aclocal.m4: Fix for ash as /bin/sh. diff --git a/lily/beam.cc b/lily/beam.cc index 465dba5254..15df1eaf68 100644 --- a/lily/beam.cc +++ b/lily/beam.cc @@ -465,8 +465,18 @@ Beam::quanting (SCM smob) Direction rdir = Direction (stem_infos.top ().dir_); bool knee_b = dirs_found[LEFT] && dirs_found[RIGHT]; - - int REGION_SIZE = 2; + /* + This + + \score { + \context Staff \notes { + \stemDown [e'8 e e'] + } + } + + breaks with REGION_SIZE < 4 + */ + int REGION_SIZE = 4; /* Knees are harder, lets try some more possibilities for knees.