aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/status_display.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/status_display.ts')
-rw-r--r--editors/code/src/status_display.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/editors/code/src/status_display.ts b/editors/code/src/status_display.ts
index 08cdc8bdf..371a2f3bb 100644
--- a/editors/code/src/status_display.ts
+++ b/editors/code/src/status_display.ts
@@ -36,13 +36,9 @@ class StatusDisplay implements vscode.Disposable {
36 this.timer || 36 this.timer ||
37 setInterval(() => { 37 setInterval(() => {
38 if (this.packageName) { 38 if (this.packageName) {
39 this.statusBarItem!.text = `cargo ${this.command} [${ 39 this.statusBarItem!.text = `${this.frame()} cargo ${this.command} [${this.packageName}]`;
40 this.packageName
41 }] ${this.frame()}`;
42 } else { 40 } else {
43 this.statusBarItem!.text = `cargo ${ 41 this.statusBarItem!.text = `${this.frame()} cargo ${this.command}`;
44 this.command
45 } ${this.frame()}`;
46 } 42 }
47 }, 300); 43 }, 300);
48 44