From 2261bde6f18d7e3a0c2d3c16c27973f53a15b557 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Tue, 24 May 2022 13:55:22 +0200 Subject: [PATCH] :bug: Fix fills priority over imported svg attributes --- frontend/src/app/main/ui/shapes/custom_stroke.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/shapes/custom_stroke.cljs b/frontend/src/app/main/ui/shapes/custom_stroke.cljs index ba4776f2b..e3e80e431 100644 --- a/frontend/src/app/main/ui/shapes/custom_stroke.cljs +++ b/frontend/src/app/main/ui/shapes/custom_stroke.cljs @@ -360,7 +360,7 @@ (-> props (obj/set! "style" style))) - (some? svg-attrs) + (and (some? svg-attrs) (empty? (:fills shape))) (let [style (-> (obj/get props "style") (obj/clone))