diff --git a/terminus-terminal/src/components/terminalTab.component.ts b/terminus-terminal/src/components/terminalTab.component.ts index 355f8674..d6f1f35f 100644 --- a/terminus-terminal/src/components/terminalTab.component.ts +++ b/terminus-terminal/src/components/terminalTab.component.ts @@ -340,6 +340,9 @@ export class TerminalTabComponent extends BaseTabComponent { } async canClose (): Promise { + if (this.hostApp.platform === Platform.Windows) { + return true + } let children = await this.session.getChildProcesses() if (children.length === 0) { return true