diff options
Diffstat (limited to 'src/tabs.py')
-rw-r--r-- | src/tabs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tabs.py b/src/tabs.py index 209649ac..3d28ace3 100644 --- a/src/tabs.py +++ b/src/tabs.py @@ -269,13 +269,14 @@ class TabWithInfoWin(Tab): del self.info_win Tab.__del__(self) -class InfoTab(ChatTab): +class InfoTab(ChatTab, TabWithInfoWin): """ The information tab, used to display global informations when using a anonymous account """ def __init__(self, core): Tab.__init__(self, core) + TabWithInfoWin.__init__(self) self.tab_win = windows.GlobalInfoBar() self.input = windows.Input() self.name = "Info" |