From aa39747886430d58f0b73c59bf6f3e1882d0c26d Mon Sep 17 00:00:00 2001 From: Kendell R Date: Tue, 21 Nov 2023 07:01:29 -0800 Subject: [PATCH] Format --- plugins/convertPathData.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/convertPathData.js b/plugins/convertPathData.js index a6e5591c0..d5386369b 100644 --- a/plugins/convertPathData.js +++ b/plugins/convertPathData.js @@ -843,9 +843,9 @@ function filters( params.removeUseless && isSafeToUseZ && // @ts-ignore - Math.abs(item.base[0] - item.coords[0]) < (error / 16) && + Math.abs(item.base[0] - item.coords[0]) < error / 10 && // @ts-ignore - Math.abs(item.base[1] - item.coords[1]) < (error / 16) + Math.abs(item.base[1] - item.coords[1]) < error / 10 ) return false;