Editor navigation scrolled to top when opening the LRU item (fix #89519)

This commit is contained in:
Benjamin Pasero 2020-01-29 11:51:26 +01:00
parent 2cbd6864b1
commit 18b404fb24

View file

@ -754,6 +754,7 @@ export class QuickOpenWidget extends Disposable implements IModelProvider, IThem
else if (autoFocus.autoFocusLastEntry) {
if (entries.length > 1) {
this.tree.focusLast();
this.tree.reveal(this.tree.getFocus());
}
}
}