0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-14 08:41:48 -05:00

Merge pull request #2243 from penpot/add-shortcut-for-clear-undo

🐛 Change shortcut for "Clear undo"
This commit is contained in:
Andrey Antukh 2022-09-14 12:46:27 +02:00 committed by GitHub
commit 7832a80f82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -21,6 +21,8 @@
- Fix undo after moving layers will wrongly order the layers [Taiga #3344](https://tree.taiga.io/project/penpot/issue/3344) - Fix undo after moving layers will wrongly order the layers [Taiga #3344](https://tree.taiga.io/project/penpot/issue/3344)
- Fix grouping typographies by drag & drop does not work (again) [#2203](https://github.com/penpot/penpot/issues/2203) - Fix grouping typographies by drag & drop does not work (again) [#2203](https://github.com/penpot/penpot/issues/2203)
- Fix when ungrouping, the items previously grouped should ALWAYS remain selected [Taiga #4064](https://tree.taiga.io/project/penpot/issue/4064) - Fix when ungrouping, the items previously grouped should ALWAYS remain selected [Taiga #4064](https://tree.taiga.io/project/penpot/issue/4064)
- Change shortcut for "Clear undo" [#2219](https://github.com/penpot/penpot/issues/2219)
## 1.15.2-beta ## 1.15.2-beta

View file

@ -45,8 +45,8 @@
:subsections [:edit] :subsections [:edit]
:fn #(st/emit! dwc/redo)} :fn #(st/emit! dwc/redo)}
:clear-undo {:tooltip (ds/meta "Q") :clear-undo {:tooltip (ds/alt "Z")
:command (ds/c-mod "q") :command "alt+z"
:subsections [:edit] :subsections [:edit]
:fn #(st/emit! dwu/reinitialize-undo)} :fn #(st/emit! dwu/reinitialize-undo)}