diff --git a/src/store/ui.ts b/src/store/ui.ts index b8fcc3f932..47555a13dd 100644 --- a/src/store/ui.ts +++ b/src/store/ui.ts @@ -249,10 +249,12 @@ export const uiStore: VoiceVoxStoreOptions = commit("LOCK_UI"); commit("LOCK_MENUBAR"); - const result: number = await window.electron.showInfoDialog({ + const result: number = await window.electron.showQuestionDialog({ + type: "info", title: "アップデートチェック", message: "アップデートチェックを行います。\nよろしいですか?", buttons: ["はい", "いいえ"], + cancelId: 1, }); commit("UNLOCK_UI"); commit("UNLOCK_MENUBAR");