mirror of
https://github.com/penpot/penpot.git
synced 2025-03-11 23:31:21 -05:00
🐛 Fix problem with overlay positions in viewer
This commit is contained in:
parent
a180c33a32
commit
6a161267ba
2 changed files with 3 additions and 1 deletions
|
@ -77,6 +77,7 @@
|
||||||
- Fix scroll on color picker modal [Taiga #8353](https://tree.taiga.io/project/penpot/issue/8353)
|
- Fix scroll on color picker modal [Taiga #8353](https://tree.taiga.io/project/penpot/issue/8353)
|
||||||
- Fix components are not dragged from the group to the assets tab [Taiga #8273](https://tree.taiga.io/project/penpot/issue/8273)
|
- Fix components are not dragged from the group to the assets tab [Taiga #8273](https://tree.taiga.io/project/penpot/issue/8273)
|
||||||
- Fix problem with SVG import [Github #4888](https://github.com/penpot/penpot/issues/4888)
|
- Fix problem with SVG import [Github #4888](https://github.com/penpot/penpot/issues/4888)
|
||||||
|
- Fix problem with overlay positions in viewer [Taiga #8464](https://tree.taiga.io/project/penpot/issue/8464)
|
||||||
|
|
||||||
## 2.1.5
|
## 2.1.5
|
||||||
|
|
||||||
|
|
|
@ -427,7 +427,8 @@
|
||||||
(let [childs (mapv #(get objects %) (:shapes (unchecked-get props "shape")))
|
(let [childs (mapv #(get objects %) (:shapes (unchecked-get props "shape")))
|
||||||
props (obj/merge! #js {} props
|
props (obj/merge! #js {} props
|
||||||
#js {:childs childs
|
#js {:childs childs
|
||||||
:objects objects})]
|
:objects objects
|
||||||
|
:all-objects all-objects})]
|
||||||
(when (not-empty childs)
|
(when (not-empty childs)
|
||||||
[:> group-wrapper props])))))
|
[:> group-wrapper props])))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue