From f80e9d9ddeb17e302240bcfd0051f37fb0ce2854 Mon Sep 17 00:00:00 2001 From: mathieui Date: Fri, 26 Mar 2021 12:49:20 +0100 Subject: fix: forgotten tab names set --- poezio/tabs/rostertab.py | 2 +- poezio/tabs/xmltab.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'poezio') diff --git a/poezio/tabs/rostertab.py b/poezio/tabs/rostertab.py index 78843f92..4aa68fd5 100644 --- a/poezio/tabs/rostertab.py +++ b/poezio/tabs/rostertab.py @@ -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) diff --git a/poezio/tabs/xmltab.py b/poezio/tabs/xmltab.py index 8922c8d5..9501c6d3 100644 --- a/poezio/tabs/xmltab.py +++ b/poezio/tabs/xmltab.py @@ -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 -- cgit v1.2.3