This commit is contained in:
Kovid Goyal 2025-07-23 09:37:54 +05:30
parent 8a39976449
commit 57bfa9e2e5
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -1010,9 +1010,8 @@ class TabManager: # {{{
boss = get_boss()
w = self.active_window
data = {'tab_manager': self}
for g in global_watchers():
for watcher in g.on_tab_bar_dirty:
watcher(boss, w, data)
for watcher in global_watchers().on_tab_bar_dirty:
watcher(boss, w, data)
def update_tab_bar_data(self) -> None:
self.tab_bar.update(self.tab_bar_data)