0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-25 07:58:49 -05:00

🐛 Fixed selection behaviour

This commit is contained in:
alonso.torres 2020-06-03 09:04:49 +02:00
parent ccbe50b042
commit 1f82c0f1e1
2 changed files with 2 additions and 1 deletions

View file

@ -1329,6 +1329,7 @@
"ctrl+shift+z" #(st/emit! dwc/redo)
"ctrl+y" #(st/emit! dwc/redo)
"ctrl+q" #(st/emit! dwc/reinitialize-undo)
"a" #(st/emit! (select-for-drawing :frame))
"b" #(st/emit! (select-for-drawing :rect))
"e" #(st/emit! (select-for-drawing :circle))
"t" #(st/emit! (select-for-drawing :text))

View file

@ -125,7 +125,7 @@
(:hidden item))
nil
(.-ctrlKey event)
(.-shiftKey event)
(st/emit! (dw/select-shape id true))
(> (count selected) 1)