From df7a28a904cdaef17dbcb3f93dde796c9efeec53 Mon Sep 17 00:00:00 2001 From: Erich Gamma Date: Thu, 28 Jan 2016 14:15:11 +0100 Subject: [PATCH] Fixes #2369 --- extensions/typescript/src/utils/salsaStatus.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/typescript/src/utils/salsaStatus.ts b/extensions/typescript/src/utils/salsaStatus.ts index b074d8ad094..03afed1416b 100644 --- a/extensions/typescript/src/utils/salsaStatus.ts +++ b/extensions/typescript/src/utils/salsaStatus.ts @@ -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();