Skip to content

Commit 9c892db

Browse files
authored
Merge pull request microsoft#209467 from microsoft/merogge/splits
fix join terminals bug
2 parents f756507 + 69193b5 commit 9c892db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminal/browser/terminalGroupService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ export class TerminalGroupService extends Disposable implements ITerminalGroupSe
391391
break;
392392
}
393393
}
394-
if (!differentGroups) {
394+
if (!differentGroups && group.terminalInstances.length === instances.length) {
395395
return;
396396
}
397397
}

0 commit comments

Comments
 (0)