From 75a10fb246e0271e89003f3a74c80329eb53dc21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 4 Aug 2016 12:21:58 +0200 Subject: [PATCH] Boolean: Clear branch so we start with a new one on the next contour. --- src/path/PathItem.Boolean.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/path/PathItem.Boolean.js b/src/path/PathItem.Boolean.js index 7be9076c..d6972901 100644 --- a/src/path/PathItem.Boolean.js +++ b/src/path/PathItem.Boolean.js @@ -864,6 +864,8 @@ PathItem.inject(new function() { paths.push(path); } } + // Clear branch so we start with a new one on the next contour. + branch = null; } return paths; }