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

admin - do not show warning on windows for now

上级 e7dfec77
......@@ -338,13 +338,9 @@ export class ElectronWindow extends Themable {
// Update title
this.titleService.updateProperties({ isAdmin });
// Show warning message
if (isAdmin) {
if (isWindows) {
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));
}
// Show warning message (unix only)
if (isAdmin && !isWindows) {
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.
先完成此消息的编辑!
想要评论请 注册