From a4514fcf6615abe3aa9153690eff9badb8ab3260 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 22 Feb 2026 12:12:23 +0530 Subject: [PATCH] ... --- kitty/tabs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/tabs.py b/kitty/tabs.py index 9a2943ef5..82eda3947 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -1195,13 +1195,13 @@ class TabManager: # {{{ @property def tab_bar_should_be_visible(self) -> bool: if self.tab_being_dropped is not None: - return True + return True # keep tab bar visible in the dest count = get_options().tab_bar_min_tabs if count < 1: return True tab_id, drag_started = get_tab_being_dragged()[:2] if drag_started and self.tab_for_id(tab_id) is not None: - return True # keep tab bar visible in the source tab + return True # keep tab bar visible in the source for t in self.tabs_to_be_shown_in_tab_bar: count -= 1 if count < 1: