mirror of
https://github.com/penpot/penpot.git
synced 2026-05-20 23:43:41 +00:00
🐛 Fix problem with path edition of shapes
This commit is contained in:
parent
2cdc241e68
commit
ecb85778bc
@ -48,6 +48,7 @@
|
|||||||
- Fix problem when duplicating grid layout [Github #6391](https://github.com/penpot/penpot/issues/6391)
|
- Fix problem when duplicating grid layout [Github #6391](https://github.com/penpot/penpot/issues/6391)
|
||||||
- Fix issue that makes workspace shortcuts stop working [Taiga #11062](https://tree.taiga.io/project/penpot/issue/11062)
|
- Fix issue that makes workspace shortcuts stop working [Taiga #11062](https://tree.taiga.io/project/penpot/issue/11062)
|
||||||
- Fix problem while syncing library colors and typographies [Taiga #11068](https://tree.taiga.io/project/penpot/issue/11068)
|
- Fix problem while syncing library colors and typographies [Taiga #11068](https://tree.taiga.io/project/penpot/issue/11068)
|
||||||
|
- Fix problem with path edition of shapes [Taiga #9496](https://tree.taiga.io/project/penpot/issue/9496)
|
||||||
|
|
||||||
## 2.6.2
|
## 2.6.2
|
||||||
|
|
||||||
|
|||||||
@ -48,7 +48,7 @@
|
|||||||
ptk/UpdateEvent
|
ptk/UpdateEvent
|
||||||
(update [_ state]
|
(update [_ state]
|
||||||
(-> state
|
(-> state
|
||||||
(update :workspace-local dissoc :edition)
|
(update :workspace-local dissoc :edition :edit-path)
|
||||||
(update :workspace-drawing dissoc :tool :object :lock)
|
(update :workspace-drawing dissoc :tool :object :lock)
|
||||||
(dissoc :workspace-grid-edition)))
|
(dissoc :workspace-grid-edition)))
|
||||||
|
|
||||||
|
|||||||
@ -22,6 +22,7 @@
|
|||||||
[app.main.data.helpers :as dsh]
|
[app.main.data.helpers :as dsh]
|
||||||
[app.main.data.modal :as md]
|
[app.main.data.modal :as md]
|
||||||
[app.main.data.workspace.collapse :as dwc]
|
[app.main.data.workspace.collapse :as dwc]
|
||||||
|
[app.main.data.workspace.edition :as dwe]
|
||||||
[app.main.data.workspace.specialized-panel :as-alias dwsp]
|
[app.main.data.workspace.specialized-panel :as-alias dwsp]
|
||||||
[app.main.data.workspace.undo :as dwu]
|
[app.main.data.workspace.undo :as dwu]
|
||||||
[app.main.data.workspace.zoom :as dwz]
|
[app.main.data.workspace.zoom :as dwz]
|
||||||
@ -305,8 +306,9 @@
|
|||||||
(watch [_ state _]
|
(watch [_ state _]
|
||||||
(let [params-without-board (-> (rt/get-params state)
|
(let [params-without-board (-> (rt/get-params state)
|
||||||
(dissoc :board-id))]
|
(dissoc :board-id))]
|
||||||
(rx/of ::dwsp/interrupt)
|
(rx/of ::dwsp/interrupt
|
||||||
(rx/of (rt/nav :workspace params-without-board {::rt/replace true}))))
|
(dwe/clear-edition-mode)
|
||||||
|
(rt/nav :workspace params-without-board {::rt/replace true}))))
|
||||||
|
|
||||||
ptk/UpdateEvent
|
ptk/UpdateEvent
|
||||||
(update [_ state]
|
(update [_ state]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user