aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/status_display.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-31 20:13:30 +0000
committerAleksey Kladov <[email protected]>2019-12-31 20:13:30 +0000
commitef24721640c4722ce47d491a6bf5dd0760da57bd (patch)
tree78f11b60c19e74059afc26f7638efad6201d9864 /editors/code/src/status_display.ts
parente4d217074d1f2c922cf8c5a247ca05fa06b0b7ed (diff)
Fixes to progress display
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