提交 25f3e007 编写于 作者: A Alex Dima

Fixes #60318

上级 0f02aa06
......@@ -426,7 +426,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)
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册