This commit is contained in:
Erich Gamma 2016-01-28 14:15:11 +01:00
parent baaa42c0e9
commit df7a28a904

View file

@ -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();