Ver código fonte

fix: Corrected typo in toggle theme shortcut (#5813)

Paul Yi 2 anos atrás
pai
commit
2e5c798c71
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/actions/shortcuts.ts

+ 1 - 1
src/actions/shortcuts.ts

@@ -38,7 +38,7 @@ export type ShortcutName =
   | "imageExport";
 
 const shortcutMap: Record<ShortcutName, string[]> = {
-  toggleTheme: [getShortcutKey("Shit+Alt+D")],
+  toggleTheme: [getShortcutKey("Shift+Alt+D")],
   saveScene: [getShortcutKey("CtrlOrCmd+S")],
   loadScene: [getShortcutKey("CtrlOrCmd+O")],
   imageExport: [getShortcutKey("CtrlOrCmd+Shift+E")],