Skip to content

Commit 261fc99

Browse files
1 parent 7d3027e commit 261fc99

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/vs/base/parts/quickinput/browser/quickInput.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,11 +1166,14 @@ class InputBox extends QuickInput implements IInputBox {
11661166
if (!this.visible) {
11671167
return;
11681168
}
1169+
1170+
this.ui.container.classList.remove('hidden-input');
11691171
const visibilities: Visibilities = {
11701172
title: !!this.title || !!this.step || !!this.buttons.length,
11711173
description: !!this.description || !!this.step,
11721174
inputBox: true, message: true
11731175
};
1176+
11741177
this.ui.setVisibilities(visibilities);
11751178
super.update();
11761179
if (this.ui.inputBox.value !== this.value) {
@@ -1186,7 +1189,6 @@ class InputBox extends QuickInput implements IInputBox {
11861189
if (this.ui.inputBox.password !== this.password) {
11871190
this.ui.inputBox.password = this.password;
11881191
}
1189-
11901192
}
11911193
}
11921194

0 commit comments

Comments
 (0)