summaryrefslogtreecommitdiff
path: root/src/tabs/conversationtab.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-03-23 00:47:05 +0100
committermathieui <mathieui@mathieui.net>2014-03-23 00:47:05 +0100
commit5c9dd440377ebcd682bc6a2cae1e9466813a476d (patch)
treedb8444d7286a7b504a8a4e1cf5e9ae11aa59d54c /src/tabs/conversationtab.py
parentfba511e266e5e57d645ed16fb0ebfca946a6f3d4 (diff)
downloadpoezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.tar.gz
poezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.tar.bz2
poezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.tar.xz
poezio-5c9dd440377ebcd682bc6a2cae1e9466813a476d.zip
Add jid info to the unlock messages
Diffstat (limited to 'src/tabs/conversationtab.py')
-rw-r--r--src/tabs/conversationtab.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tabs/conversationtab.py b/src/tabs/conversationtab.py
index 21c858fd..5e9734d5 100644
--- a/src/tabs/conversationtab.py
+++ b/src/tabs/conversationtab.py
@@ -393,14 +393,17 @@ class DynamicConversationTab(ConversationTab):
self.unlock()
self.refresh_info_header()
- def unlock(self):
+ def unlock(self, from_=None):
"""
Unlock the tab from a resource. It is now “associated” with the bare
jid.
"""
if self.locked_resource != None:
self.locked_resource = None
- self.add_message(_('Conversation unlocked.'), typ=0)
+ if from_:
+ self.add_message(_('Conversation unlocked (received activity from %s).') % from_, typ=0)
+ else:
+ self.add_message(_('Conversation unlocked.'), typ=0)
def get_dest_jid(self):
"""