From 2f79e79498364d3d89f898d3cb3f95cb5312d4d6 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Wed, 3 Jun 2020 07:49:35 +0200 Subject: [PATCH] :bug: Shortcuts in context menu were wrong --- frontend/src/uxbox/main/ui/workspace/context_menu.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/uxbox/main/ui/workspace/context_menu.cljs b/frontend/src/uxbox/main/ui/workspace/context_menu.cljs index 2ef31176e..b2f6921ab 100644 --- a/frontend/src/uxbox/main/ui/workspace/context_menu.cljs +++ b/frontend/src/uxbox/main/ui/workspace/context_menu.cljs @@ -87,12 +87,12 @@ (when (> (count selected) 1) [:& menu-entry {:title "Group" - :shortcut "Ctrl + g" + :shortcut "g" :on-click do-create-group}]) (when (and (= (count selected)) (= (:type shape) :group)) [:& menu-entry {:title "Ungroup" - :shortcut "Ctrl + shift + g" + :shortcut "Shift + g" :on-click do-remove-group}]) (if (:hidden shape)