Jelajahi Sumber

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

Paul Yi 2 tahun lalu
induk
melakukan
2e5c798c71
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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")],