0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 16:00:19 -05:00

🐛 Disables filters in masking elements

This commit is contained in:
alonso.torres 2021-02-25 17:07:42 +01:00 committed by Andrey Antukh
parent 8fb5dbb980
commit ecd020eec2
2 changed files with 3 additions and 1 deletions

View file

@ -29,6 +29,7 @@
- Add more improvements to french translation strings [#591](https://github.com/penpot/penpot/pull/591)
- Add some missing database indexes (mainly improves performance on large databases on file-update rpc method, and some background tasks).
- Disables filters in masking elements (problem with Firefox rendering)
- Drawing tool will have priority over resize/rotate handlers [Taiga #1225](https://tree.taiga.io/project/penpot/issue/1225)
- Fix broken bounding box on editing paths [Taiga #1254](https://tree.taiga.io/project/penpot/issue/1254)
- Fix corner cases on invitation/signup flows.

View file

@ -32,5 +32,6 @@
:result "comp"}]]
[:mask {:id (str (:id mask) "-mask")}
[:g {:filter (str/fmt "url(#%s)" (str (:id mask) "-filter"))}
[:& shape-wrapper {:frame frame :shape mask}]]]])))
[:& shape-wrapper {:frame frame :shape (-> mask
(dissoc :shadow :blur))}]]]])))