Dont strip title for tabs to allow for leading and trailing whitespace. Fixes #6013
This commit is contained in:
parent
5a7abd6214
commit
ec375ad3c6
1 changed files with 1 additions and 1 deletions
|
|
@ -1129,7 +1129,7 @@ def tab_bar_data(self) -> List[TabBarData]:
|
|||
at = self.active_tab
|
||||
ans = []
|
||||
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
|
||||
has_activity_since_last_focus = False
|
||||
for w in t:
|
||||
|
|
|
|||
Loading…
Reference in a new issue