Skip to content

Commit 5aeb2d3

Browse files
author
Akos Kitta
committed
Flip the auto install buttons.
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
1 parent b6b4c75 commit 5aeb2d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-ide-extension/src/browser/boards/boards-auto-installer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class BoardsAutoInstaller implements FrontendApplicationContribution {
4141
.filter(({ installable, installedVersion }) => installable && !installedVersion);
4242
for (const candidate of candidates) {
4343
// tslint:disable-next-line:max-line-length
44-
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 => {
44+
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 => {
4545
if (answer === 'Yes') {
4646
const dialog = new InstallationProgressDialog(candidate.name, candidate.availableVersions[0]);
4747
dialog.open();

0 commit comments

Comments
 (0)