From e688b710981de03a321288378b3f1ba67322ede3 Mon Sep 17 00:00:00 2001 From: Jarrah Date: Mon, 10 Nov 2025 19:01:18 +0000 Subject: [PATCH] Added ability to close non-primary tabs involved in a split view --- src/ui/desktop/navigation/TopNavbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/desktop/navigation/TopNavbar.tsx b/src/ui/desktop/navigation/TopNavbar.tsx index 7a7bb34d..6a0edb38 100644 --- a/src/ui/desktop/navigation/TopNavbar.tsx +++ b/src/ui/desktop/navigation/TopNavbar.tsx @@ -340,7 +340,7 @@ export function TopNavbar({ isSplitScreenActive); const isHome = tab.type === "home"; const disableClose = - (isSplitScreenActive && isActive) || isSplit || isHome; + (isSplitScreenActive && isActive) || isHome; const isDraggingThisTab = dragState.draggedIndex === index; const isTheDraggedTab = tab.id === dragState.draggedId;