summaryrefslogtreecommitdiff
path: root/poezio/core/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/core/core.py')
-rw-r--r--poezio/core/core.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index 14852ac2..2b8252b1 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -1349,7 +1349,10 @@ class Core:
colors = get_theme().INFO_COLORS
color = colors.get(typ.lower(), colors.get('default', None))
nb_lines = self.information_buffer.add_message(
- msg, nickname=typ, nick_color=color)
+ txt=msg,
+ nickname=typ,
+ nick_color=color
+ )
popup_on = config.get('information_buffer_popup_on').split()
if isinstance(self.tabs.current_tab, tabs.RosterInfoTab):
self.refresh_window()