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 @@ -1127,7 +1127,7 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
1127
1127
1128
1128
if ( isSameExtensionRunning ) {
1129
1129
// Different version or target platform of same extension is running. Requires reload to run the current version
1130
- if ( extension . version !== runningExtension . version || extension . local . targetPlatform !== runningExtension . targetPlatform ) {
1130
+ if ( ! runningExtension . isUnderDevelopment && ( extension . version !== runningExtension . version || extension . local . targetPlatform !== runningExtension . targetPlatform ) ) {
1131
1131
return nls . localize ( 'postUpdateTooltip' , "Please reload Visual Studio Code to enable the updated extension." ) ;
1132
1132
}
1133
1133
You can’t perform that action at this time.
0 commit comments