0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-13 18:48:37 -05:00

🐛 Shortcuts in context menu were wrong

This commit is contained in:
alonso.torres 2020-06-03 07:49:35 +02:00
parent 396a2b0e44
commit 2f79e79498

View file

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