summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-05-29 02:15:52 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-05-29 02:15:52 +0200
commite0fcaeac86f34f12dc86ebcf2310244f79361ea2 (patch)
treeb060ef34c07f8778c33e27ba17d4d5f322b52eda /src/core.py
parent8021283e655d81f8dbdfae7b555bba420964dfef (diff)
downloadpoezio-e0fcaeac86f34f12dc86ebcf2310244f79361ea2.tar.gz
poezio-e0fcaeac86f34f12dc86ebcf2310244f79361ea2.tar.bz2
poezio-e0fcaeac86f34f12dc86ebcf2310244f79361ea2.tar.xz
poezio-e0fcaeac86f34f12dc86ebcf2310244f79361ea2.zip
fixes #2153 Remove the anon-specific tab
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core.py b/src/core.py
index 1da52b21..4430d280 100644
--- a/src/core.py
+++ b/src/core.py
@@ -185,8 +185,7 @@ class Core(object):
tabs.Tab.resize(self.stdscr)
# resize the information_win to its initial size
self.resize_global_information_win()
- default_tab = tabs.InfoTab() if self.xmpp.anon\
- else tabs.RosterInfoTab()
+ default_tab = tabs.RosterInfoTab()
default_tab.on_gain_focus()
self.tabs.append(default_tab)
self.information(_('Welcome to poezio!'))