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:
parent
48b225f3fe
commit
51a34c0091
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue