mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
Add Select All shortcut (#1270)
This commit is contained in:
parent
3f9d96f120
commit
60d9567e2d
1 changed files with 4 additions and 0 deletions
|
@ -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", "")]}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue