mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-25 02:17:03 +00:00
Allow tab title to be set to empty to use window title
This commit is contained in:
parent
88ee5e95fc
commit
d29faa0986
1 changed files with 1 additions and 1 deletions
|
|
@ -1425,7 +1425,7 @@ class Boss:
|
|||
|
||||
def do_set_tab_title(self, title: str, tab_id: int) -> None:
|
||||
tm = self.active_tab_manager
|
||||
if tm is not None and title:
|
||||
if tm is not None:
|
||||
tab_id = int(tab_id)
|
||||
for tab in tm.tabs:
|
||||
if tab.id == tab_id:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue