From df6695559403f70c202e733fdf403cb669db84be Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Fri, 18 Oct 2024 11:51:58 +0200 Subject: [PATCH] :bug: Fix problem with shadows and frames in Safari --- frontend/src/app/main/ui/shapes/frame.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/shapes/frame.cljs b/frontend/src/app/main/ui/shapes/frame.cljs index 05191e8f5..3befcda74 100644 --- a/frontend/src/app/main/ui/shapes/frame.cljs +++ b/frontend/src/app/main/ui/shapes/frame.cljs @@ -68,8 +68,8 @@ filter-id-blur (dm/fmt "filter-blur-%" render-id) filter-id-shadows (dm/fmt "filter-shadow-%" render-id) - filter-str-blur (filters/filter-str filter-id-blur shape) - filter-str-shadows (filters/filter-str filter-id-shadows shape) + filter-str-blur (filters/filter-str filter-id-blur (dissoc shape :shadow)) + filter-str-shadows (filters/filter-str filter-id-shadows (dissoc shape :blur)) x (dm/get-prop shape :x) y (dm/get-prop shape :y)