Skip to content

Commit 5d85eae

Browse files
authored
Database icon is not using the theme color (#1638) (#1711)
1 parent 4fe2ec1 commit 5d85eae

File tree

1 file changed

+1
-1
lines changed
  • Extension/src/LanguageServer

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class UI {
4343
this.browseEngineStatusBarItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right, 0);
4444
this.browseEngineStatusBarItem.text = "";
4545
this.browseEngineStatusBarItem.tooltip = "Discovering files...";
46-
this.browseEngineStatusBarItem.color = "White";
46+
this.browseEngineStatusBarItem.color = new vscode.ThemeColor("statusBar.foreground");
4747
this.browseEngineStatusBarItem.command = "C_Cpp.ShowParsingCommands";
4848
this.ShowDBIcon = true;
4949
}

0 commit comments

Comments
 (0)