Skip to content

Commit 1ab5634

Browse files
committed
ATL-970: notifications should last longer
1 parent 80bddc2 commit 1ab5634

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: arduino-ide-extension/src/browser/contributions/burn-bootloader.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class BurnBootloader extends SketchContribution {
6161
verify,
6262
verbose
6363
});
64-
this.messageService.info('Done burning bootloader.', { timeout: 1000 });
64+
this.messageService.info('Done burning bootloader.', { timeout: 3000 });
6565
} catch (e) {
6666
this.messageService.error(e.toString());
6767
} finally {

Diff for: arduino-ide-extension/src/browser/contributions/upload-sketch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class UploadSketch extends SketchContribution {
148148
} else {
149149
await this.coreService.upload(options);
150150
}
151-
this.messageService.info('Done uploading.', { timeout: 1000 });
151+
this.messageService.info('Done uploading.', { timeout: 3000 });
152152
} catch (e) {
153153
this.messageService.error(e.toString());
154154
} finally {

Diff for: arduino-ide-extension/src/browser/contributions/verify-sketch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class VerifySketch extends SketchContribution {
109109
sourceOverride,
110110
compilerWarnings
111111
});
112-
this.messageService.info('Done compiling.', { timeout: 1000 });
112+
this.messageService.info('Done compiling.', { timeout: 3000 });
113113
} catch (e) {
114114
this.messageService.error(e.toString());
115115
} finally {

0 commit comments

Comments
 (0)