mirror of
https://github.com/penpot/penpot.git
synced 2025-06-12 10:31:40 +02:00
🐛 Fix history panel shortcut (#6420)
* ✨ Remove duplicate ID in file menu * 🐛 Fix shortcut for Show Version History * ✨ Add regression test
This commit is contained in:
parent
a9725a1aac
commit
3fe16bd8f9
4 changed files with 29 additions and 6 deletions
|
@ -464,11 +464,11 @@
|
|||
:subsections [:panels]
|
||||
:fn #(st/emit! (dcm/go-to-workspace :layout :assets))}
|
||||
|
||||
:toggle-history {:tooltip (ds/alt "H")
|
||||
:command (ds/a-mod "h")
|
||||
:toggle-history {:tooltip (ds/meta-alt "H")
|
||||
:command (ds/ca-mod "h")
|
||||
:subsections [:panels]
|
||||
:fn #(emit-when-no-readonly
|
||||
(dcm/go-to-workspace :layout :document-history))}
|
||||
(dw/toggle-layout-flag :document-history))}
|
||||
|
||||
:toggle-colorpalette {:tooltip (ds/alt "P")
|
||||
:command (ds/a-mod "p")
|
||||
|
|
|
@ -618,7 +618,7 @@
|
|||
[:> dropdown-menu-item* {:class (stl/css :submenu-item)
|
||||
:on-click on-pin-version
|
||||
:on-key-down on-pin-version-key-down
|
||||
:id "file-menu-show-version-history"}
|
||||
:id "file-menu-create-version"}
|
||||
[:span {:class (stl/css :item-name)}
|
||||
(tr "dashboard.create-version-menu")]]
|
||||
|
||||
|
@ -627,7 +627,10 @@
|
|||
:on-key-down on-show-version-history-key-down
|
||||
:id "file-menu-show-version-history"}
|
||||
[:span {:class (stl/css :item-name)}
|
||||
(tr "dashboard.show-version-history")]]
|
||||
(tr "dashboard.show-version-history")]
|
||||
[:span {:class (stl/css :shortcut)}
|
||||
(for [sc (scd/split-sc (sc/get-tooltip :toggle-history))]
|
||||
[:span {:class (stl/css :shortcut-key) :key sc} sc])]]
|
||||
|
||||
[:div {:class (stl/css :separator)}]])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue