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

🐛 Fix padding/gap/margin remain glowing when the shape is deselected and selected again

This commit is contained in:
Pablo Alba 2023-03-27 09:50:04 +02:00 committed by Alonso Torres
parent c3c41c5b7d
commit d61c799846
2 changed files with 19 additions and 0 deletions

View file

@ -256,6 +256,12 @@
select-padding #(select-paddings (= % :p1) (= % :p2) (= % :p3) (= % :p4))]
(mf/use-effect
(fn []
(fn []
;;on destroy component
(select-paddings false false false false))))
[:div.padding-row
(cond
(= padding-type :simple)
@ -315,6 +321,13 @@
(let [select-gap
(fn [gap]
(st/emit! (udw/set-gap-selected gap)))]
(mf/use-effect
(fn []
(fn []
;;on destroy component
(select-gap nil))))
[:div.layout-row
[:div.gap.row-title "Gap"]
[:div.gap-group

View file

@ -54,6 +54,12 @@
select-margin #(select-margins (= % :m1) (= % :m2) (= % :m3) (= % :m4))]
(mf/use-effect
(fn []
(fn []
;;on destroy component
(select-margins false false false false))))
[:div.margin-row
(cond
(= margin-type :simple)