From 79fb798471138e380a80829a2d0e705de18a2911 Mon Sep 17 00:00:00 2001 From: V Date: Fri, 14 Jul 2023 02:14:00 +0200 Subject: [PATCH] Move text to detail --- src/main/mainWindow.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts index d9d84af..ab62066 100644 --- a/src/main/mainWindow.ts +++ b/src/main/mainWindow.ts @@ -126,9 +126,8 @@ const enum MessageBoxChoice { async function clearData(win: BrowserWindow) { const { response } = await dialog.showMessageBox(win, { - message: - "Are you sure you want to reset Vesktop? This will log you out, clear caches and reset all your settings", - detail: "Vesktop will automatically restart after this operation.", + message: "Are you sure you want to reset Vesktop?", + detail: "This will log you out, clear caches and reset all your settings!\n\nVesktop will automatically restart after this operation.", buttons: ["Yes", "No"], cancelId: MessageBoxChoice.Cancel, defaultId: MessageBoxChoice.Default,