From 5aeb2d388ea12e0103326b8e84af69d5c60701ec Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Wed, 4 Dec 2019 19:33:31 +0100 Subject: [PATCH] Flip the auto install buttons. Signed-off-by: Akos Kitta --- .../src/browser/boards/boards-auto-installer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-ide-extension/src/browser/boards/boards-auto-installer.ts b/arduino-ide-extension/src/browser/boards/boards-auto-installer.ts index 2f6ff16f..8581b6f3 100644 --- a/arduino-ide-extension/src/browser/boards/boards-auto-installer.ts +++ b/arduino-ide-extension/src/browser/boards/boards-auto-installer.ts @@ -41,7 +41,7 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution { .filter(({ installable, installedVersion }) => installable && !installedVersion); for (const candidate of candidates) { // tslint:disable-next-line:max-line-length - this.messageService.info(`The \`"${candidate.name}"\` core has to be installed for the currently selected \`"${selectedBoard.name}"\` board. Do you want to install it now?`, 'Yes', 'Install Manually').then(async answer => { + this.messageService.info(`The \`"${candidate.name}"\` core has to be installed for the currently selected \`"${selectedBoard.name}"\` board. Do you want to install it now?`, 'Install Manually', 'Yes').then(async answer => { if (answer === 'Yes') { const dialog = new InstallationProgressDialog(candidate.name, candidate.availableVersions[0]); dialog.open();