There was an error while loading. Please reload this page.
1 parent 47f9c5c commit 38518fdCopy full SHA for 38518fd
1 file changed
src/extension.ts
@@ -84,10 +84,11 @@ function updateProgressIndicator(): void {
84
if (checksRunning) {
85
cppcheckProgressIndicator.text = `$(loading~spin) Cppcheck Running ..`;
86
cppcheckProgressIndicator.show();
87
- // severityOption.hide();
+ // To avoid crowding status bar we alternate between progress indicator and severity option item
88
+ severityOption.hide();
89
} else {
90
cppcheckProgressIndicator.hide();
- // severityOption.show();
91
+ severityOption.show();
92
}
93
94
0 commit comments