From da5342b4a7a4cd192f0d2adec71dd141b7c9e167 Mon Sep 17 00:00:00 2001 From: Eugene Date: Fri, 26 Jan 2024 20:19:16 +0100 Subject: [PATCH] fixed #8097 - "close pane" hotkey doesn't kill the process --- tabby-core/src/components/splitTab.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-core/src/components/splitTab.component.ts b/tabby-core/src/components/splitTab.component.ts index ae25688bbd..f0e53b518d 100644 --- a/tabby-core/src/components/splitTab.component.ts +++ b/tabby-core/src/components/splitTab.component.ts @@ -350,7 +350,7 @@ export class SplitTabComponent extends BaseTabComponent implements AfterViewInit } break case 'close-pane': - this.removeTab(this.focusedTab) + this.focusedTab.destroy() break case 'pane-increase-vertical': this.resizePane('v')