From fab0f8019daf35b9b559b8c1852937833c241747 Mon Sep 17 00:00:00 2001 From: Atlante45 Date: Sun, 2 Oct 2016 17:33:07 -0700 Subject: [PATCH] Ask windows to not try to be helpful --- server-console/src/main.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/server-console/src/main.js b/server-console/src/main.js index c090640ada..b8e661ffbd 100644 --- a/server-console/src/main.js +++ b/server-console/src/main.js @@ -575,16 +575,20 @@ function checkNewContent() { type: 'question', buttons: ['Yes', 'No'], defaultId: 1, + cancelId: 1, title: 'New home content', - message: 'A newer version of the home content set is available.\nDo you wish to update?' + message: 'A newer version of the home content set is available.\nDo you wish to update?', + noLink: true, }, function(idx) { if (idx === 0) { dialog.showMessageBox({ type: 'warning', buttons: ['Yes', 'No'], defaultId: 1, + cancelId: 1, title: 'Are you sure?', - message: 'Updating with the new content will remove all your current content and settings and place them in a backup folder.\nAre you sure?' + message: 'Updating with the new content will remove all your current content and settings and place them in a backup folder.\nAre you sure?', + noLink: true, }, function(idx) { if (idx === 0) { backupResourceDirectoriesAndRestart();