From: Thomas Morley Date: Fri, 31 Jul 2015 22:19:02 +0000 (+0200) Subject: Fix ugly output from make-parenthesis-stencil for increased thickness X-Git-Tag: release/2.19.25-1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2755c70c630d8f4a7fc8cd77621a4e3ee05096ab;p=lilypond.git Fix ugly output from make-parenthesis-stencil for increased thickness issue 4532 This was caused by the fix for issue 3930. Small and very small object were focused by 3930 and it did the job. Though, obviously increasing the thickness for make-bezier-sandwich-stencil should have been limited. --- diff --git a/scm/stencil.scm b/scm/stencil.scm index e64cc2b91c..f73b081630 100644 --- a/scm/stencil.scm +++ b/scm/stencil.scm @@ -159,7 +159,7 @@ the more angular the shape of the parenthesis." upper-end-point ;; Step 1: move to lower end point. lower-end-point) - (* 2 half-thickness) + (min (* 2 half-thickness) line-width) (interval-widen x-extent (/ line-width 2)) (interval-widen y-extent (/ line-width 2)))))