Skip to content

Commit aa7bc85

Browse files
Support showing progress on InputBoxes (microsoft#188424)
Fixes microsoft#188080
1 parent 043e26c commit aa7bc85

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/vs/platform/quickinput/browser/quickInput.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,9 @@ class InputBox extends QuickInput implements IInputBox {
12391239
const visibilities: Visibilities = {
12401240
title: !!this.title || !!this.step || !!this.buttons.length,
12411241
description: !!this.description || !!this.step,
1242-
inputBox: true, message: true
1242+
inputBox: true,
1243+
message: true,
1244+
progressBar: true
12431245
};
12441246

12451247
this.ui.setVisibilities(visibilities);

0 commit comments

Comments
 (0)