Fix shortcut for Draw tool in help dialog, it's not SHIFT+P anymore but just X (#4548)

This commit is contained in:
Jérémy Mouzin 2022-01-07 19:20:42 +01:00 committed by GitHub
parent ac71ee7278
commit 74861b1398
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ export const HelpDialog = ({ onClose }: { onClose?: () => void }) => {
<Shortcut label={t("toolBar.line")} shortcuts={["P", "6"]} />
<Shortcut
label={t("toolBar.freedraw")}
shortcuts={["Shift+P", "7"]}
shortcuts={["X", "7"]}
/>
<Shortcut label={t("toolBar.text")} shortcuts={["T", "8"]} />
<Shortcut label={t("toolBar.image")} shortcuts={["9"]} />