mirror of
https://github.com/penpot/penpot.git
synced 2025-02-08 16:18:11 -05:00
🐛 Fix cut/delete text layer when while creating text
This commit is contained in:
parent
fdbabe49df
commit
99693f0fc2
2 changed files with 3 additions and 1 deletions
|
@ -48,6 +48,7 @@
|
||||||
- Fix problem with comments when user left the team [Taiga #5562](https://tree.taiga.io/project/penpot/issue/5562)
|
- Fix problem with comments when user left the team [Taiga #5562](https://tree.taiga.io/project/penpot/issue/5562)
|
||||||
- Fix problem with images patterns repeating [#3372](https://github.com/penpot/penpot/issues/3372)
|
- Fix problem with images patterns repeating [#3372](https://github.com/penpot/penpot/issues/3372)
|
||||||
- Fix grid not being clipped in frames [#3365](https://github.com/penpot/penpot/issues/3365)
|
- Fix grid not being clipped in frames [#3365](https://github.com/penpot/penpot/issues/3365)
|
||||||
|
- Fix cut/delete text layer when while creating text [Taiga #5602](https://tree.taiga.io/project/penpot/issue/5602)
|
||||||
|
|
||||||
### :arrow_up: Deps updates
|
### :arrow_up: Deps updates
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,8 @@
|
||||||
(rx/merge
|
(rx/merge
|
||||||
(rx/of (update-editor-state shape nil))
|
(rx/of (update-editor-state shape nil))
|
||||||
(when (and (not= content (:content shape))
|
(when (and (not= content (:content shape))
|
||||||
(some? (:current-page-id state)))
|
(some? (:current-page-id state))
|
||||||
|
(some? shape))
|
||||||
(rx/of
|
(rx/of
|
||||||
(dch/update-shapes
|
(dch/update-shapes
|
||||||
[id]
|
[id]
|
||||||
|
|
Loading…
Add table
Reference in a new issue