From 1be993f8b1103fbcb601b346fa45b85c50bd2493 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Mon, 8 Mar 2021 16:22:09 +0100 Subject: [PATCH] :bug: Fixes problem with default fill colors --- frontend/src/app/main/ui/shapes/attrs.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/shapes/attrs.cljs b/frontend/src/app/main/ui/shapes/attrs.cljs index 7340f8cd0..a10ec1d17 100644 --- a/frontend/src/app/main/ui/shapes/attrs.cljs +++ b/frontend/src/app/main/ui/shapes/attrs.cljs @@ -86,7 +86,7 @@ ;; If contains svg-attrs the origin is svg. If it's not svg origin ;; we setup the default fill as transparent (instead of black) (and (not (contains? shape :svg-attrs)) - (not (= :svg-raw (:type shape)))) + (not (#{ :svg-raw :group } (:type shape)))) {:fill "transparent"} :else