mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-22 16:28:19 +02:00
Fix #3400
This commit is contained in:
@@ -745,7 +745,10 @@ class TabManager: # {{{
|
||||
|
||||
def remove(self, tab: Tab) -> None:
|
||||
self._remove_tab(tab)
|
||||
active_tab_needs_to_change = self.active_tab is None or self.active_tab is tab
|
||||
try:
|
||||
active_tab_needs_to_change = self.active_tab is None or self.active_tab is tab
|
||||
except IndexError:
|
||||
active_tab_needs_to_change = True
|
||||
while True:
|
||||
try:
|
||||
self.active_tab_history.remove(tab.id)
|
||||
|
||||
Reference in New Issue
Block a user