From 34accd1e1b95956be332033ae047129534db9857 Mon Sep 17 00:00:00 2001 From: Taco de Wolff Date: Sun, 21 May 2017 20:53:25 +0200 Subject: [PATCH] Remove final Add1 --- truetype/face.go | 1 - 1 file changed, 1 deletion(-) diff --git a/truetype/face.go b/truetype/face.go index 10f125f..0bf79c7 100644 --- a/truetype/face.go +++ b/truetype/face.go @@ -491,7 +491,6 @@ func (a *face) drawContour(ps []Point, dx, dy fixed.Int26_6) { if a.stroke == 0 { a.r.AddPath(path) } else { - path.Add1(start) a.r.AddStroke(path, a.stroke, raster.RoundCapper, raster.RoundJoiner) } }