From eaa6ea80e608d3f20fc951ea74abe2c8de4ffeda Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 17 Mar 2022 15:12:16 +0100 Subject: [PATCH] :bug: Fix problem when adding shadows to imported text --- CHANGES.md | 1 + frontend/src/app/main/ui/shapes/filters.cljs | 23 ++++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 66178ed01..ce87874e8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -47,6 +47,7 @@ - Fix display code icon on preview hover [Taiga #2838](https://tree.taiga.io/project/penpot/us/2838) - Fix crash on iOS when displaying viewer [#1522](https://github.com/penpot/penpot/issues/1522) - Fix problem when importing a SVG with text [#1532](https://github.com/penpot/penpot/issues/1532) +- Fix problem when adding shadows to imported text [#Taiga 3057](https://tree.taiga.io/project/penpot/issue/3057) ### :arrow_up: Deps updates ### :heart: Community contributions by (Thank you!) diff --git a/frontend/src/app/main/ui/shapes/filters.cljs b/frontend/src/app/main/ui/shapes/filters.cljs index eadd1750d..a1370b887 100644 --- a/frontend/src/app/main/ui/shapes/filters.cljs +++ b/frontend/src/app/main/ui/shapes/filters.cljs @@ -175,7 +175,7 @@ (if svg-root? ;; When is a raw-svg but not the root we use the whole svg as bound for the filter. Is the maximum ;; we're allowed to display - {:x 0 :y 0 :width width :height height} + {:x x :y y :width width :height height} ;; Otherwise we calculate the bound (let [filter-bounds (->> filters @@ -224,15 +224,14 @@ filter-y (/ (- (:y bounds) (:y selrect) padding) (:height selrect)) filter-width (/ (+ (:width bounds) (* 2 padding)) (:width selrect)) filter-height (/ (+ (:height bounds) (* 2 padding)) (:height selrect))] - [:* - (when (> (count filters) 2) - [:filter {:id filter-id - :x filter-x - :y filter-y - :width filter-width - :height filter-height - :filterUnits "objectBoundingBox" - :color-interpolation-filters "sRGB"} - (for [entry filters] - [:& filter-entry {:entry entry}])])])) + (when (> (count filters) 2) + [:filter {:id filter-id + :x filter-x + :y filter-y + :width filter-width + :height filter-height + :filterUnits "objectBoundingBox" + :color-interpolation-filters "sRGB"} + (for [entry filters] + [:& filter-entry {:entry entry}])])))