From 2755c70c630d8f4a7fc8cd77621a4e3ee05096ab Mon Sep 17 00:00:00 2001 From: Thomas Morley Date: Sat, 1 Aug 2015 00:19:02 +0200 Subject: [PATCH] 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. --- scm/stencil.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))))) -- 2.39.5