提交 497229f0 编写于 作者: B Benjamin Pasero

admin - do not show warning on windows for now

上级 e7dfec77
...@@ -338,13 +338,9 @@ export class ElectronWindow extends Themable { ...@@ -338,13 +338,9 @@ export class ElectronWindow extends Themable {
// Update title // Update title
this.titleService.updateProperties({ isAdmin }); this.titleService.updateProperties({ isAdmin });
// Show warning message // Show warning message (unix only)
if (isAdmin) { if (isAdmin && !isWindows) {
if (isWindows) { this.messageService.show(Severity.Warning, nls.localize('runningAsRoot', "It is not recommended to run {0} as root user.", product.nameShort));
this.messageService.show(Severity.Warning, nls.localize('runningAsAdmin', "It is not recommended to run {0} as Administrator.", product.nameShort));
} else {
this.messageService.show(Severity.Warning, nls.localize('runningAsRoot', "It is not recommended to run {0} as root user.", product.nameShort));
}
} }
}); });
}); });
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册