docs: add multiple selection docs (#1875)

pull/1881/head
Oren Me 5 years ago committed by GitHub
parent 93137c0bb2
commit 84abda82d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -259,6 +259,12 @@ export const ShortcutsDialog = ({ onClose }: { onClose?: () => void }) => {
label={t("labels.selectAll")}
shortcuts={[getShortcutKey("CtrlOrCmd+A")]}
/>
<Shortcut
label={t("labels.multiSelect")}
shortcuts={[
getShortcutKey(`Shift+${t("shortcutsDialog.click")}`),
]}
/>
<Shortcut
label={t("labels.moveCanvas")}
shortcuts={[

@ -2,6 +2,7 @@
"labels": {
"paste": "Paste",
"selectAll": "Select all",
"multiSelect": "Add element to selection",
"moveCanvas": "Move canvas",
"copy": "Copy",
"copyAsPng": "Copy to clipboard as PNG",

Loading…
Cancel
Save