mirror of
https://github.com/penpot/penpot.git
synced 2026-05-04 15:49:34 +00:00
🐛 Fix regression on drawing text with auto-size
Using editor v1 Caused by 2ed743b6be2a6b32ee96af0ad0493f8e772d7163
This commit is contained in:
parent
5e2b847202
commit
e0cc999345
@ -235,7 +235,11 @@
|
||||
(when (some? modifiers)
|
||||
(d/mapm (fn [id {current-modifiers :modifiers}]
|
||||
(let [shape (get objects id)
|
||||
adapt-text? (and (= :text (:type shape)) (not (ctm/only-move? current-modifiers)))
|
||||
|
||||
adapt-text?
|
||||
(and (= :text (:type shape))
|
||||
(ctm/has-geometry? current-modifiers)
|
||||
(not (ctm/only-move? current-modifiers)))
|
||||
|
||||
current-modifiers
|
||||
(cond-> current-modifiers
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user