Skip to content

Commit

Permalink
fix: dキーを押して目がやられる問題 (#43)
Browse files Browse the repository at this point in the history
Co-authored-by: Esurio <esurio@esurio1673.net>
  • Loading branch information
1673beta and Esurio authored Jun 26, 2024
1 parent b7b8094 commit e0ea640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/boot/main-boot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export async function mainBoot() {
}

const hotkeys = {
'd': (): void => {
'ctrl+d': (): void => {
defaultStore.set('darkMode', !defaultStore.state.darkMode);
},
's': (): void => {
Expand Down Expand Up @@ -103,7 +103,7 @@ export async function mainBoot() {
}).render();
}
}
}
}
} catch (error) {
// console.error(error);
console.error('Failed to initialise the seasonal screen effect canvas context:', error);
Expand Down

0 comments on commit e0ea640

Please sign in to comment.