Hint for shortcut for moving the visible area (#1784)
This commit is contained in:
parent
bda8415714
commit
a357d00bbe
@ -255,6 +255,14 @@ export const ShortcutsDialog = ({ onClose }: { onClose?: () => void }) => {
|
|||||||
label={t("labels.selectAll")}
|
label={t("labels.selectAll")}
|
||||||
shortcuts={[getShortcutKey("CtrlOrCmd+A")]}
|
shortcuts={[getShortcutKey("CtrlOrCmd+A")]}
|
||||||
/>
|
/>
|
||||||
|
<Shortcut
|
||||||
|
label={t("labels.moveCanvas")}
|
||||||
|
shortcuts={[
|
||||||
|
getShortcutKey(`Space+${t("shortcutsDialog.drag")}`),
|
||||||
|
getShortcutKey(`Wheel+${t("shortcutsDialog.drag")}`),
|
||||||
|
]}
|
||||||
|
isOr={true}
|
||||||
|
/>
|
||||||
<Shortcut
|
<Shortcut
|
||||||
label={t("labels.copy")}
|
label={t("labels.copy")}
|
||||||
shortcuts={[getShortcutKey("CtrlOrCmd+C")]}
|
shortcuts={[getShortcutKey("CtrlOrCmd+C")]}
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
"labels": {
|
"labels": {
|
||||||
"paste": "Paste",
|
"paste": "Paste",
|
||||||
"selectAll": "Select all",
|
"selectAll": "Select all",
|
||||||
|
"moveCanvas": "Move canvas",
|
||||||
"copy": "Copy",
|
"copy": "Copy",
|
||||||
"copyAsPng": "Copy to clipboard as PNG",
|
"copyAsPng": "Copy to clipboard as PNG",
|
||||||
"copyAsSvg": "Copy to clipboard as SVG",
|
"copyAsSvg": "Copy to clipboard as SVG",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user