From 5aed85698813575150a0ba83116a7d11189cfba8 Mon Sep 17 00:00:00 2001 From: hashcoko Date: Tue, 28 Nov 2023 02:13:31 +0900 Subject: [PATCH] Update hotkey.ts to display the name of the selected preset Signed-off-by: hashcoko --- src/ts/hotkey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/hotkey.ts b/src/ts/hotkey.ts index 54b2934b..75a9677d 100644 --- a/src/ts/hotkey.ts +++ b/src/ts/hotkey.ts @@ -70,7 +70,7 @@ function changeToPreset(num:number){ let db = get(DataBase) let pres = db.botPresets if(pres.length > num){ - alertToast(`Changed to Preset ${num+1}`) + alertToast(`Changed to Preset ${num+1} || Preset name : ${pres[num].name}`) changeToPreset2(num) } }