From a769fdd036b925b3e41c6d97b0ac84e4f27f2bfa Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 15 Jul 2024 23:29:03 +0200 Subject: [PATCH] fixed #9760, fixed #9742, fixed #9762, fixed #9763 - terminals unexpectedly going to sleep --- tabby-core/src/components/splitTab.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tabby-core/src/components/splitTab.component.ts b/tabby-core/src/components/splitTab.component.ts index a2c428e2..94b59675 100644 --- a/tabby-core/src/components/splitTab.component.ts +++ b/tabby-core/src/components/splitTab.component.ts @@ -381,6 +381,9 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit } } }, 100) + + // Propagate visibility to new children + this.emitVisibility(this.visibility.value) } this.initialized.next() this.initialized.complete()