Skip to content

Commit 3a6b7f7

Browse files
authored
editors - fix mergeAllGroups (#118268) (#118406)
1 parent 06c5e24 commit 3a6b7f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/browser/parts/editor/editorCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ export function mergeAllGroups(editorGroupService: IEditorGroupsService): void {
283283
const target = editorGroupService.activeGroup;
284284
for (const group of editorGroupService.getGroups(GroupsOrder.MOST_RECENTLY_ACTIVE)) {
285285
if (group === target) {
286-
return; // keep target
286+
continue; // keep target
287287
}
288288

289289
editorGroupService.mergeGroup(group, target);

0 commit comments

Comments
 (0)