提交 df7a28a9 编写于 作者: E Erich Gamma

Fixes #2369

上级 baaa42c0
......@@ -35,9 +35,9 @@ export function show(message: string, tooltip: string, error: boolean) {
statusBarEntry = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, Number.MIN_VALUE);
statusBarEntry.text = message;
statusBarEntry.tooltip = tooltip;
let color = 'yellow';
let color = 'white';
if (error) {
color = 'red';
color = 'orange';
}
statusBarEntry.color = color;
statusBarEntry.show();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册