From 2a580ccf8be8c1cb6f0ee846a5312cbdee1e810d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 11 Jan 2016 01:27:10 +0200 Subject: [PATCH] Add handler for supr/delete key button. --- frontend/uxbox/ui/workspace/shortcuts.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/uxbox/ui/workspace/shortcuts.cljs b/frontend/uxbox/ui/workspace/shortcuts.cljs index 3ccd36096..b122a9138 100644 --- a/frontend/uxbox/ui/workspace/shortcuts.cljs +++ b/frontend/uxbox/ui/workspace/shortcuts.cljs @@ -20,6 +20,7 @@ :ctrl+shift+l #(rs/emit! (dw/toggle-toolbox :layers)) :esc #(rs/emit! (dw/deselect-all)) :backspace #(rs/emit! (dw/remove-selected)) + :delete #(rs/emit! (dw/remove-selected)) :up #(rs/emit! (dw/move-selected :up)) :down #(rs/emit! (dw/move-selected :down)) :right #(rs/emit! (dw/move-selected :right))