mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-13 22:36:32 +00:00
ATL-970: notifications should last longer
This commit is contained in:
parent
80bddc238d
commit
1ab5634789
@ -61,7 +61,7 @@ export class BurnBootloader extends SketchContribution {
|
|||||||
verify,
|
verify,
|
||||||
verbose
|
verbose
|
||||||
});
|
});
|
||||||
this.messageService.info('Done burning bootloader.', { timeout: 1000 });
|
this.messageService.info('Done burning bootloader.', { timeout: 3000 });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.messageService.error(e.toString());
|
this.messageService.error(e.toString());
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -148,7 +148,7 @@ export class UploadSketch extends SketchContribution {
|
|||||||
} else {
|
} else {
|
||||||
await this.coreService.upload(options);
|
await this.coreService.upload(options);
|
||||||
}
|
}
|
||||||
this.messageService.info('Done uploading.', { timeout: 1000 });
|
this.messageService.info('Done uploading.', { timeout: 3000 });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.messageService.error(e.toString());
|
this.messageService.error(e.toString());
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -109,7 +109,7 @@ export class VerifySketch extends SketchContribution {
|
|||||||
sourceOverride,
|
sourceOverride,
|
||||||
compilerWarnings
|
compilerWarnings
|
||||||
});
|
});
|
||||||
this.messageService.info('Done compiling.', { timeout: 1000 });
|
this.messageService.info('Done compiling.', { timeout: 3000 });
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.messageService.error(e.toString());
|
this.messageService.error(e.toString());
|
||||||
} finally {
|
} finally {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user