mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 07:50:43 -05:00
🐛 Fix export bounding box mask
This commit is contained in:
parent
38468d7584
commit
d2d7803186
2 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@
|
|||
- Fix error after user drags any layer in search functionality [Taiga #4161](https://tree.taiga.io/project/penpot/issue/4161)
|
||||
- Fix font search works only with lowercase letters [Taiga #4140](https://tree.taiga.io/project/penpot/issue/4140)
|
||||
- Fix Terms and Privacy links overlapping [Taiga #4137](https://tree.taiga.io/project/penpot/issue/4137)
|
||||
- Fix Export bounding box mask [Taiga #950](https://tree.taiga.io/project/penpot/issue/950)
|
||||
|
||||
## 1.15.3-beta
|
||||
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
(-> (get-shape-filter-bounds shape)
|
||||
(add-padding (calculate-padding shape true))))
|
||||
|
||||
bounds (if (cph/frame-shape? shape)
|
||||
bounds (if (or (:masked-group? shape) (cph/frame-shape? shape))
|
||||
[(calculate-base-bounds shape)]
|
||||
(cph/reduce-objects
|
||||
objects
|
||||
|
|
Loading…
Reference in a new issue