Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Dima <alexdima@microsoft.com>2018-10-10 21:47:09 +0300
committerAlex Dima <alexdima@microsoft.com>2018-10-10 21:49:43 +0300
commit7d9711259c26dd624d1d265f873cee35d0055922 (patch)
tree6b6533b18d1e740ea52e615fe909422edcfa02f6
parent86671f0880d52766bf84d6a89797e596916d8ed3 (diff)
Fixes #60318
-rw-r--r--src/vs/workbench/services/extensions/electron-browser/extensionService.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vs/workbench/services/extensions/electron-browser/extensionService.ts b/src/vs/workbench/services/extensions/electron-browser/extensionService.ts
index 8ad39398879..51394dd5f40 100644
--- a/src/vs/workbench/services/extensions/electron-browser/extensionService.ts
+++ b/src/vs/workbench/services/extensions/electron-browser/extensionService.ts
@@ -438,7 +438,10 @@ export class ExtensionService extends Disposable implements IExtensionService {
}
private _onResponsiveStateChanged(state: ResponsiveState): void {
- if (this._isDev) {
+ // Do not show the notification anymore
+ // See https://github.com/Microsoft/vscode/issues/60318
+ const DISABLE_PROMPT = true;
+ if (this._isDev || DISABLE_PROMPT) {
return; // do not show any notification when developing an extension (https://github.com/Microsoft/vscode/issues/59251)
}