docs: add multiple selection docs (#1875)

This commit is contained in:
Oren Me 2020-07-07 12:24:07 +03:00 committed by GitHub
parent 93137c0bb2
commit 84abda82d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -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={[

View File

@ -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",