Skip to content

Commit

Permalink
extensions assistant: show message that extension is being installed
Browse files Browse the repository at this point in the history
fixes #3341
  • Loading branch information
isidorn committed Feb 25, 2016
1 parent 9d21055 commit 83f1fe7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ export function checkForLegacyExtensionNeeds(accessor: ServicesAccessor): void {
new Action('ext.install', nls.localize('yes', "Yes"), undefined, undefined, () => {
let actualInstall = instantiationService.createInstance(InstallAction, nls.localize('yes', "Yes"));
actualInstall.run(extension);
return TPromise.as(true);
return TPromise.as(true).then(() => {
messageService.hideAll();
messageService.show(Severity.Info, nls.localize('extensionsInstalled', "Extension '{0}' is being installed...", extension.displayName));
});
})
];

Expand Down

0 comments on commit 83f1fe7

Please sign in to comment.