From dd56f866792fc71c50e7b9a93ced0c9ea8b1f005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Wed, 22 Mar 2017 14:24:40 +0100 Subject: [PATCH] Boolean: Pass on options in PathItem#subtract(path, options) Relates to #1221 --- src/path/PathItem.Boolean.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/path/PathItem.Boolean.js b/src/path/PathItem.Boolean.js index 3d4bc18e..ec26e7cc 100644 --- a/src/path/PathItem.Boolean.js +++ b/src/path/PathItem.Boolean.js @@ -1077,8 +1077,8 @@ PathItem.inject(new function() { * @param {Object} [options] the boolean operation options * @return {PathItem} the resulting path item */ - subtract: function(path) { - return computeBoolean(this, path, 'subtract'); + subtract: function(path, options) { + return computeBoolean(this, path, 'subtract', options); }, /**