Output the actual tab id in its repr
This commit is contained in:
parent
a856c64104
commit
d1eb9340ac
1 changed files with 1 additions and 1 deletions
|
|
@ -759,7 +759,7 @@ def destroy(self) -> None:
|
|||
self.windows = WindowList(self)
|
||||
|
||||
def __repr__(self) -> str:
|
||||
return f'Tab(title={self.effective_title}, id={hex(id(self))})'
|
||||
return f'Tab(title={self.effective_title}, id={self.id})'
|
||||
|
||||
def make_active(self) -> None:
|
||||
tm = self.tab_manager_ref()
|
||||
|
|
|
|||
Loading…
Reference in a new issue