Add Select All shortcut (#1270)

This commit is contained in:
Lipis 2020-04-06 15:07:28 +03:00 committed by GitHub
parent 3f9d96f120
commit 60d9567e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,6 +153,10 @@ export const ShortcutsDialog = ({ onClose }: { onClose?: () => void }) => {
<Shortcut title={t("toolBar.lock")} shortcuts={["Q"]} />
</ShortcutIsland>
<ShortcutIsland title={t("shortcutsDialog.editor")}>
<Shortcut
title={t("labels.selectAll")}
shortcuts={[getShortcutKey("CtrlOrCmd+A", "")]}
/>
<Shortcut
title={t("labels.copy")}
shortcuts={[getShortcutKey("CtrlOrCmd+C", "")]}