mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-11 19:29:28 +00:00
Notify user if platform/lib install was successful
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
@@ -84,7 +84,8 @@ export class LibraryListWidget extends ListWidget<LibraryPackage> {
|
||||
}
|
||||
|
||||
if (typeof installDependencies === 'boolean') {
|
||||
return this.service.install({ item, version, installDependencies });
|
||||
await this.service.install({ item, version, installDependencies });
|
||||
this.messageService.info(`Successfully installed library ${item.name}:${version}.`, { timeout: 3000 });
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user