diff options
author | mathieui <mathieui@mathieui.net> | 2014-10-12 22:28:10 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-10-12 22:28:10 +0200 |
commit | 577d6ea87bf7b5c96fbf307dbf921e1b5f594cbe (patch) | |
tree | 2dd0bb222b7d4ef4af5005c96ba403794332fb42 /src/tabs | |
parent | 25e91b0c9453cc235b539c39caf33853d618a51d (diff) | |
download | poezio-577d6ea87bf7b5c96fbf307dbf921e1b5f594cbe.tar.gz poezio-577d6ea87bf7b5c96fbf307dbf921e1b5f594cbe.tar.bz2 poezio-577d6ea87bf7b5c96fbf307dbf921e1b5f594cbe.tar.xz poezio-577d6ea87bf7b5c96fbf307dbf921e1b5f594cbe.zip |
Output the result of the /info command in the MUC window
and not the global info buffer
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/muctab.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py index 5167dffd..c36a533d 100644 --- a/src/tabs/muctab.py +++ b/src/tabs/muctab.py @@ -355,7 +355,8 @@ class MucTab(ChatTab): dump_tuple(theme.color_role(user.role)), user.role or 'None', '\n%s' % user.status if user.status else '') - self.core.information(info, 'Info') + self.add_message(info, typ=0) + self.core.refresh_window() def command_configure(self, arg): """ |