From 11698ecd134eddc8cd8b97da5e30d8dc2e5252e6 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 6 Jun 2018 08:20:21 +0200 Subject: [PATCH] fix #51150 --- src/vs/workbench/electron-browser/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/electron-browser/actions.ts b/src/vs/workbench/electron-browser/actions.ts index c09537dca7f..1a54d767562 100644 --- a/src/vs/workbench/electron-browser/actions.ts +++ b/src/vs/workbench/electron-browser/actions.ts @@ -1197,7 +1197,7 @@ export abstract class BaseNavigationAction extends Action { } protected navigateAcrossEditorGroup(direction: GroupDirection): TPromise { - const nextGroup = this.editorGroupService.findGroup({ direction }, this.editorGroupService.activeGroup, true); + const nextGroup = this.editorGroupService.findGroup({ direction }, this.editorGroupService.activeGroup); if (nextGroup) { nextGroup.focus();