From e6a45f4242ebddb7aa9a229f85555e8a3bd987e2 Mon Sep 17 00:00:00 2001 From: SteVen Batten Date: Thu, 20 Feb 2020 16:42:52 -0800 Subject: [PATCH] fixes #89688 --- src/vs/workbench/browser/layout.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/browser/layout.ts b/src/vs/workbench/browser/layout.ts index 53b4a803ee9..943d5ad7988 100644 --- a/src/vs/workbench/browser/layout.ts +++ b/src/vs/workbench/browser/layout.ts @@ -1180,6 +1180,7 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi } else { this.setEditorHidden(false); this.workbenchGrid.resizeView(this.panelPartView, { width: this.state.panel.position === Position.BOTTOM ? size.width : this.state.panel.lastNonMaximizedWidth, height: this.state.panel.position === Position.BOTTOM ? this.state.panel.lastNonMaximizedHeight : size.height }); + this.editorGroupService.activeGroup.focus(); } }