fix: forgotten tab names set
This commit is contained in:
parent
ef772d8b2a
commit
f80e9d9dde
3 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue