From a19f5fd3050821ded73c0327520e849808da6808 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Fri, 10 Nov 2023 08:11:26 +0100 Subject: [PATCH] :bug: Fix blur --- common/src/app/common/geom/shapes/bounds.cljc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/common/src/app/common/geom/shapes/bounds.cljc b/common/src/app/common/geom/shapes/bounds.cljc index 3fc8342a9..5473d8a0b 100644 --- a/common/src/app/common/geom/shapes/bounds.cljc +++ b/common/src/app/common/geom/shapes/bounds.cljc @@ -20,11 +20,11 @@ (- (mth/sqrt (* 2 stroke-width stroke-width)) stroke-width))) (defn- apply-filters - [type filters] + [attr type filters] (sequence (comp (remove :hidden) - (filter #(= (:style %) type)) + (filter #(= (attr %) type)) (map (fn [item] {:id (dm/str "filter_" (:id item)) :type type @@ -40,10 +40,10 @@ ;; We can revisit this in the future #_(->> shape :blur (into []) (blur-filters :background-blur)) - (->> shape :shadow (apply-filters :drop-shadow)) + (->> shape :shadow (apply-filters :style :drop-shadow)) [{:id "shape" :type :blend-filters}] - (->> shape :shadow (apply-filters :inner-shadow)) - (->> shape :blur (into []) (apply-filters :layer-blur)))) + (->> shape :shadow (apply-filters :style :inner-shadow)) + (->> shape :blur list (apply-filters :type :layer-blur)))) (defn- calculate-filter-bounds [selrect filter-entry]