From a4bc9dc3622f614f801825703218c313036213a5 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Sun, 21 Feb 2016 22:31:21 -0500 Subject: [PATCH] stack should not affect current, hasCurrent --- context.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/context.go b/context.go index 021e37e..f58944b 100644 --- a/context.go +++ b/context.go @@ -491,4 +491,6 @@ func (dc *Context) Pop() { dc.strokePath = before.strokePath dc.fillPath = before.fillPath dc.start = before.start + dc.current = before.current + dc.hasCurrent = before.hasCurrent }