We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9c660 commit 0b18e9bCopy full SHA for 0b18e9b
src/extension/providers/PanelViewProvider.ts
@@ -84,12 +84,15 @@ export default class PopupViewProvider implements vscode.TreeDataProvider<Status
84
statusBarItem.text = "$(zap) Fast Olympic Coding";
85
statusBarItem.backgroundColor = undefined;
86
} else {
87
- statusBarItem.text = `$(zap) Fast Olympic Coding: ${parts.join(" ")}`;
+ let icon;
88
if (totalRunningTests > 0 || stressSessions.length > 0) {
89
+ icon = "$(loading~spin)";
90
statusBarItem.backgroundColor = new vscode.ThemeColor("statusBarItem.warningBackground");
91
92
+ icon = "$(zap)";
93
94
}
95
+ statusBarItem.text = `${icon} Fast Olympic Coding: ${parts.join(" ")}`;
96
97
98
0 commit comments