mirror of
https://github.com/penpot/penpot.git
synced 2025-07-19 00:37:17 +02:00
🐛 Fix problem with root frame parent reference
This commit is contained in:
parent
66076f1332
commit
7aa1237833
2 changed files with 5 additions and 3 deletions
|
@ -58,6 +58,7 @@ is a number of cores)
|
||||||
- Fix problem in plugins with zoomIntoView [Plugins #189](https://github.com/penpot/penpot-plugins/issues/189)
|
- Fix problem in plugins with zoomIntoView [Plugins #189](https://github.com/penpot/penpot-plugins/issues/189)
|
||||||
- Fix problem in plugins with renaming components [Taiga #10060](https://tree.taiga.io/project/penpot/issue/10060)
|
- Fix problem in plugins with renaming components [Taiga #10060](https://tree.taiga.io/project/penpot/issue/10060)
|
||||||
- Added upload svg with images method [#5489](https://github.com/penpot/penpot/issues/5489)
|
- Added upload svg with images method [#5489](https://github.com/penpot/penpot/issues/5489)
|
||||||
|
- Fix problem with root frame parent reference [Taiga #9437](https://tree.taiga.io/project/penpot/issue/9437)
|
||||||
|
|
||||||
## 2.4.3
|
## 2.4.3
|
||||||
|
|
||||||
|
|
|
@ -515,9 +515,10 @@
|
||||||
;; not enumerable so there are no infinite loops
|
;; not enumerable so there are no infinite loops
|
||||||
:enumerable false
|
:enumerable false
|
||||||
:get (fn [self]
|
:get (fn [self]
|
||||||
(let [shape (u/proxy->shape self)
|
(let [shape (u/proxy->shape self)]
|
||||||
parent-id (:parent-id shape)]
|
(when-not (cfh/root? shape)
|
||||||
(shape-proxy plugin-id (obj/get self "$file") (obj/get self "$page") parent-id)))}
|
(let [parent-id (:parent-id shape)]
|
||||||
|
(shape-proxy plugin-id (obj/get self "$file") (obj/get self "$page") parent-id)))))}
|
||||||
|
|
||||||
:parentX
|
:parentX
|
||||||
{:this true
|
{:this true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue