File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/vs/workbench/contrib/extensions/browser Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1102,7 +1102,7 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
1102
1102
if ( isUninstalled ) {
1103
1103
const canRemoveRunningExtension = runningExtension && this . extensionService . canRemoveExtension ( runningExtension ) ;
1104
1104
const isSameExtensionRunning = runningExtension && ( ! extension . server || extension . server === this . extensionManagementServerService . getExtensionManagementServer ( toExtension ( runningExtension ) ) ) ;
1105
- if ( ! canRemoveRunningExtension && isSameExtensionRunning ) {
1105
+ if ( ! canRemoveRunningExtension && isSameExtensionRunning && ! runningExtension . isUnderDevelopment ) {
1106
1106
return nls . localize ( 'postUninstallTooltip' , "Please reload Visual Studio Code to complete the uninstallation of this extension." ) ;
1107
1107
}
1108
1108
return undefined ;
You can’t perform that action at this time.
0 commit comments