From c62fadac4755e5e0b8cd0a4473e430621dc57697 Mon Sep 17 00:00:00 2001 From: Aitor Moreno Date: Tue, 16 Sep 2025 11:36:21 +0200 Subject: [PATCH] :bug: Fix fast move with distance (#7302) * :bug: Fix fast move with distance * :paperclip: Remove duplicated shourtcuts --------- Co-authored-by: Andrey Antukh --- frontend/src/app/main/data/workspace/shortcuts.cljs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/app/main/data/workspace/shortcuts.cljs b/frontend/src/app/main/data/workspace/shortcuts.cljs index c1741df475..b36a28006b 100644 --- a/frontend/src/app/main/data/workspace/shortcuts.cljs +++ b/frontend/src/app/main/data/workspace/shortcuts.cljs @@ -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))}