From e8b4389a1aa09bd90d3d5eb7f6a59f63cc167463 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Mon, 15 Jan 2024 14:10:51 +0100 Subject: [PATCH] :bug: Fix problem with bool to path on svg shapes --- common/src/app/common/geom/shapes/bool.cljc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/app/common/geom/shapes/bool.cljc b/common/src/app/common/geom/shapes/bool.cljc index a1eeb1581..48116a88d 100644 --- a/common/src/app/common/geom/shapes/bool.cljc +++ b/common/src/app/common/geom/shapes/bool.cljc @@ -7,6 +7,7 @@ (ns app.common.geom.shapes.bool (:require [app.common.data :as d] + [app.common.files.helpers :as cpf] [app.common.svg.path.bool :as pb] [app.common.svg.path.shapes-to-path :as stp])) @@ -16,6 +17,7 @@ (let [extract-content-xf (comp (map (d/getf objects)) (filter (comp not :hidden)) + (remove cpf/svg-raw-shape?) (map #(stp/convert-to-path % objects)) (map :content))