🐛 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:
Aitor Moreno 2025-09-16 11:36:21 +02:00 committed by GitHub
parent a264f84e6c
commit c62fadac47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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))}