File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/vs/base/parts/quickinput/browser Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1166,11 +1166,14 @@ class InputBox extends QuickInput implements IInputBox {
1166
1166
if ( ! this . visible ) {
1167
1167
return ;
1168
1168
}
1169
+
1170
+ this . ui . container . classList . remove ( 'hidden-input' ) ;
1169
1171
const visibilities : Visibilities = {
1170
1172
title : ! ! this . title || ! ! this . step || ! ! this . buttons . length ,
1171
1173
description : ! ! this . description || ! ! this . step ,
1172
1174
inputBox : true , message : true
1173
1175
} ;
1176
+
1174
1177
this . ui . setVisibilities ( visibilities ) ;
1175
1178
super . update ( ) ;
1176
1179
if ( this . ui . inputBox . value !== this . value ) {
@@ -1186,7 +1189,6 @@ class InputBox extends QuickInput implements IInputBox {
1186
1189
if ( this . ui . inputBox . password !== this . password ) {
1187
1190
this . ui . inputBox . password = this . password ;
1188
1191
}
1189
-
1190
1192
}
1191
1193
}
1192
1194
You can’t perform that action at this time.
0 commit comments