mirror of
https://github.com/penpot/penpot.git
synced 2025-02-13 18:48:37 -05:00
🐛 Fixes problem with multiple selection
This commit is contained in:
parent
6cdde84445
commit
8d2797f8a1
1 changed files with 2 additions and 1 deletions
|
@ -59,7 +59,8 @@
|
||||||
;;
|
;;
|
||||||
(let [new-val (get curr attr ::undefined)
|
(let [new-val (get curr attr ::undefined)
|
||||||
value (cond
|
value (cond
|
||||||
(= new-val ::undefined) value
|
(or (= new-val ::undefined)
|
||||||
|
(= new-val :multiple)) value
|
||||||
(= value ::undefined) (sel new-val)
|
(= value ::undefined) (sel new-val)
|
||||||
(eqfn new-val value) value
|
(eqfn new-val value) value
|
||||||
:else :multiple)]
|
:else :multiple)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue