We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f6ffc commit c002ca6Copy full SHA for c002ca6
1 file changed
src/vs/base/browser/ui/progressbar/progressbar.ts
@@ -101,7 +101,7 @@ export class ProgressBar extends Disposable {
101
this.bit.style.width = 'inherit';
102
103
if (delayed) {
104
- setTimeout(200, () => this.off());
+ setTimeout(() => this.off(), 200);
105
} else {
106
this.off();
107
}
@@ -111,7 +111,7 @@ export class ProgressBar extends Disposable {
111
else {
112
this.bit.style.opacity = '0';
113
114
115
116
117
0 commit comments