mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-24 09:18:08 +02:00
Dont strip title for tabs to allow for leading and trailing whitespace. Fixes #6013
This commit is contained in:
@@ -1129,7 +1129,7 @@ class TabManager: # {{{
|
|||||||
at = self.active_tab
|
at = self.active_tab
|
||||||
ans = []
|
ans = []
|
||||||
for t in self.tabs:
|
for t in self.tabs:
|
||||||
title = (t.name or t.title or appname).strip()
|
title = t.name or t.title or appname
|
||||||
needs_attention = False
|
needs_attention = False
|
||||||
has_activity_since_last_focus = False
|
has_activity_since_last_focus = False
|
||||||
for w in t:
|
for w in t:
|
||||||
|
|||||||
Reference in New Issue
Block a user