From d372b27ccd683e33c293b63a49738fb9af66b1a2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 30 Nov 2021 14:28:50 +0530 Subject: [PATCH] Ensure active window is updated when taking over a tab --- kitty/tabs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/tabs.py b/kitty/tabs.py index f6a259d2c..b1cf19960 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -155,6 +155,7 @@ class Tab: # {{{ for window in self.windows: window.change_tab(self) attach_window(self.os_window_id, self.id, window.id) + self.active_window_changed() self.relayout() def _set_current_layout(self, layout_name: str) -> None: