Browse Source

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

Jérémy Mouzin 3 năm trước cách đây
mục cha
commit
74861b1398
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/components/HelpDialog.tsx

+ 1 - 1
src/components/HelpDialog.tsx

@@ -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"]} />