提交 850bd490 编写于 作者: D Daniel Imms

Use warn severity for workspace shell choice

上级 521a1f94
......@@ -132,7 +132,7 @@ export class TerminalConfigHelper implements ITerminalConfigHelper {
}
const message = nls.localize('terminal.integrated.allowWorkspaceShell', "This workspace wants to customize the terminal shell, do you want to allow it? ({0})", changeString);
const options = [nls.localize('allow', "Allow"), nls.localize('cancel', "Cancel"), nls.localize('disallow', "Disallow")];
this._choiceService.choose(Severity.Info, message, options).then(choice => {
this._choiceService.choose(Severity.Warning, message, options).then(choice => {
switch (choice) {
case 0:
this._storageService.store(IS_WORKSPACE_SHELL_ALLOWED_STORAGE_KEY, true, StorageScope.WORKSPACE);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册