mirror of
https://github.com/penpot/penpot.git
synced 2025-02-12 18:18:24 -05:00
🐛 Fix problem with comments mode not staying
This commit is contained in:
parent
00450565c8
commit
dd9f637f02
2 changed files with 6 additions and 1 deletions
|
@ -44,6 +44,7 @@
|
|||
- Fix incorrect uri generation issues on share-link modal [Taiga #5564](https://tree.taiga.io/project/penpot/issue/5564)
|
||||
- Fix cache issues with share-links [Taiga #5559](https://tree.taiga.io/project/penpot/issue/5559)
|
||||
- Makes height priority for the rows/columns grids [#2774](https://github.com/penpot/penpot/issues/2774)
|
||||
- Fix problem with comments mode not staying [#3363](https://github.com/penpot/penpot/issues/3363)
|
||||
|
||||
### :arrow_up: Deps updates
|
||||
|
||||
|
|
|
@ -81,7 +81,11 @@
|
|||
(let [tool (-> (dom/get-current-target event)
|
||||
(dom/get-data "tool")
|
||||
(keyword))]
|
||||
(st/emit! :interrupt (dw/select-for-drawing tool)))))
|
||||
(st/emit! :interrupt
|
||||
dw/clear-edition-mode)
|
||||
|
||||
;; Delay so anything that launched :interrupt can finish
|
||||
(st/emit! 100 (dw/select-for-drawing tool)))))
|
||||
|
||||
toggle-text-palette
|
||||
(mf/use-fn
|
||||
|
|
Loading…
Add table
Reference in a new issue