From e923d936a11e55b19946c2f939022fbf9e2fa66d Mon Sep 17 00:00:00 2001 From: Taco de Wolff Date: Sun, 14 Apr 2024 19:11:12 -0400 Subject: [PATCH] Add comment for bug that causes 'u' not to be displayed in preview, see #290 --- path_intersection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/path_intersection.go b/path_intersection.go index b54cd1c8..755e6336 100644 --- a/path_intersection.go +++ b/path_intersection.go @@ -305,7 +305,7 @@ func (p *Path) Settle(fillRule FillRule) *Path { prev = j1 - 1 } winding := 1 - if !nodes[prev].p.CCW() { + if !nodes[prev].p.CCW() { // TODO: THIS IS WRONG but works usually (see fauxbold 'u' for DejaVu Sans) winding = -1 } // TODO: should switch winding if path B is oriented differently