fix: forgotten tab names set

This commit is contained in:
mathieui 2021-03-26 12:49:20 +01:00
parent ef772d8b2a
commit f80e9d9dde
3 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ class QrTab(Tab):
Tab.__init__(self, core)
self.state = 'highlight'
self.text = qr
self.name = qr
self._name = qr
self.topic_win = windows.Topic()
self.topic_win.set_message(qr)
self.qr_win = QrWindow(qr)

View file

@ -43,7 +43,7 @@ class RosterInfoTab(Tab):
def __init__(self, core):
Tab.__init__(self, core)
self.name = "Roster"
self._name = "Roster"
self.v_separator = windows.VerticalSeparator()
self.information_win = windows.TextWin()
self.core.information_buffer.add_window(self.information_win)

View file

@ -59,7 +59,7 @@ class XMLTab(Tab):
def __init__(self, core):
Tab.__init__(self, core)
self.state = 'normal'
self.name = 'XMLTab'
self._name = 'XMLTab'
self.filters = []
self.core_buffer = self.core.xml_buffer