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