easy with moving focus around after quick open closes

This commit is contained in:
Benjamin Pasero 2016-02-04 18:04:04 +01:00
parent a07ab40d86
commit 2edbe51772

View file

@ -618,13 +618,6 @@ export class QuickOpenController extends WorkbenchComponent implements IQuickOpe
let editor = this.editorService.getActiveEditor();
if (editor) {
editor.focus();
return;
}
// Otherwise focus viewlet
let activeViewlet = this.viewletService.getActiveViewlet();
if (activeViewlet) {
activeViewlet.focus();
}
}