0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 15:39:50 -05:00

Fix rendering order issue on group.

This commit is contained in:
Andrey Antukh 2016-11-18 20:04:46 +01:00
parent 87756246a7
commit 5fbc2ff6bb
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -71,7 +71,8 @@
(attrs/extract-style-attrs shape) (attrs/extract-style-attrs shape)
(attrs/make-debug-attrs shape))] (attrs/make-debug-attrs shape))]
[:g attrs [:g attrs
(for [item items :let [key (str item)]] (for [item (reverse items)
:let [key (str item)]]
(-> (factory item) (-> (factory item)
(mx/with-key key)))])) (mx/with-key key)))]))