We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec70ea6 commit 362715bCopy full SHA for 362715b
packages/vscode/src/dialog.ts
@@ -315,7 +315,6 @@ class Dialog {
315
}
316
buttonsNode.appendChild(confirmBtn);
317
this.root.appendChild(buttonsNode);
318
- this.entryList.layout();
319
320
this.path = options.defaultPath || "/";
321
@@ -391,6 +390,8 @@ class Dialog {
391
390
return true;
392
});
393
+ this.entryList.layout();
394
+
395
this.entryList.setChildren(null, items.map((i: DialogEntry): ITreeElement<DialogEntry> => ({ element: i })));
396
this.entryList.domFocus();
397
this.entryList.setFocus([null]);
0 commit comments