From e0ea6407e3d1533bf9e6b039964269551c0676bf Mon Sep 17 00:00:00 2001 From: Esurio/1673beta <60435625+1673beta@users.noreply.github.com> Date: Thu, 27 Jun 2024 04:56:42 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20d=E3=82=AD=E3=83=BC=E3=82=92=E6=8A=BC?= =?UTF-8?q?=E3=81=97=E3=81=A6=E7=9B=AE=E3=81=8C=E3=82=84=E3=82=89=E3=82=8C?= =?UTF-8?q?=E3=82=8B=E5=95=8F=E9=A1=8C=20(#43)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Esurio --- packages/frontend/src/boot/main-boot.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/boot/main-boot.ts b/packages/frontend/src/boot/main-boot.ts index 1e7ffe9a45..03c3fc933a 100644 --- a/packages/frontend/src/boot/main-boot.ts +++ b/packages/frontend/src/boot/main-boot.ts @@ -75,7 +75,7 @@ export async function mainBoot() { } const hotkeys = { - 'd': (): void => { + 'ctrl+d': (): void => { defaultStore.set('darkMode', !defaultStore.state.darkMode); }, 's': (): void => { @@ -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);