mirror of
https://github.com/penpot/penpot.git
synced 2026-04-28 04:38:14 +00:00
🐛 Fix fast move with distance (#7302)
* 🐛 Fix fast move with distance * 📎 Remove duplicated shourtcuts --------- Co-authored-by: Andrey Antukh <niwi@niwi.nz>
This commit is contained in:
parent
a264f84e6c
commit
c62fadac47
@ -213,22 +213,22 @@
|
||||
:fn #(emit-when-no-readonly (dw/vertical-order-selected :bottom))}
|
||||
|
||||
:move-fast-up {:tooltip (ds/shift ds/up-arrow)
|
||||
:command ["shift+up"]
|
||||
:command ["shift+up" "shift+alt+up"]
|
||||
:subsections [:modify-layers]
|
||||
:fn #(emit-when-no-readonly (dwt/move-selected :up true))}
|
||||
|
||||
:move-fast-down {:tooltip (ds/shift ds/down-arrow)
|
||||
:command ["shift+down"]
|
||||
:command ["shift+down" "shift+alt+down"]
|
||||
:subsections [:modify-layers]
|
||||
:fn #(emit-when-no-readonly (dwt/move-selected :down true))}
|
||||
|
||||
:move-fast-right {:tooltip (ds/shift ds/right-arrow)
|
||||
:command ["shift+right" "shift+alt+right" "alt+shift+right"]
|
||||
:command ["shift+right" "shift+alt+right"]
|
||||
:subsections [:modify-layers]
|
||||
:fn #(emit-when-no-readonly (dwt/move-selected :right true))}
|
||||
|
||||
:move-fast-left {:tooltip (ds/shift ds/left-arrow)
|
||||
:command ["shift+left" "shift+alt+left" "alt+shift+left"]
|
||||
:command ["shift+left" "shift+alt+left"]
|
||||
:subsections [:modify-layers]
|
||||
:fn #(emit-when-no-readonly (dwt/move-selected :left true))}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user