0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 23:49:45 -05:00

🐛 Fix select in area of hidden children elements

This commit is contained in:
alonso.torres 2023-03-09 16:15:11 +01:00
parent 079cff0bc0
commit 2a632512b3

View file

@ -255,7 +255,9 @@
:ignore-groups? ignore-groups?
:full-frame? true})
(rx/map #(cph/clean-loops objects %))
(rx/map #(into initial-set (filter (comp not blocked?)) %))
(rx/map #(into initial-set (comp
(filter (complement blocked?))
(remove (partial cph/hidden-parent? objects))) %))
(rx/map select-shapes)))))))
(defn select-inside-group