0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 03:51:21 -05:00

🐛 Fix swapped horizontal and vertical padding (#5708)

* 🐛 Fix swapped horizontal an vertical padding

* 🐛 Fix proper toggling when option `All` is selected
This commit is contained in:
Andrei Fëdorov 2025-01-29 14:29:41 +03:00 committed by GitHub
parent 48b225f3fe
commit 51a34c0091
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -90,11 +90,11 @@
:p4 "Left"}
all-padding-attrs (into #{} (keys padding-attrs))
{:keys [all-selected? selected-pred shape-ids]} (attribute-actions token selected-shapes all-padding-attrs)
horizontal-attributes #{:p1 :p3}
horizontal-attributes #{:p2 :p4}
horizontal-padding-selected? (and
(not all-selected?)
(every? selected-pred horizontal-attributes))
vertical-attributes #{:p2 :p4}
vertical-attributes #{:p1 :p3}
vertical-padding-selected? (and
(not all-selected?)
(every? selected-pred vertical-attributes))
@ -113,7 +113,7 @@
(let [props {:token token
:shape-ids shape-ids}
event (cond
all-selected? (wtch/apply-token (assoc props :attributes-to-remove vertical-attributes))
all-selected? (wtch/apply-token (assoc props :attributes-to-remove horizontal-attributes))
horizontal-padding-selected? (wtch/apply-token (assoc props :attributes-to-remove horizontal-attributes))
:else (wtch/apply-token (assoc props
:attributes horizontal-attributes