From 5c9dd440377ebcd682bc6a2cae1e9466813a476d Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 23 Mar 2014 00:47:05 +0100 Subject: Add jid info to the unlock messages --- src/core.py | 2 +- src/tabs/conversationtab.py | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/core.py b/src/core.py index 3d90513e..b762fe50 100644 --- a/src/core.py +++ b/src/core.py @@ -3459,7 +3459,7 @@ class Core(object): contact = roster[jid.bare] tab = self.get_conversation_by_jid(jid, create=False) if isinstance(tab, tabs.DynamicConversationTab) and tab.get_dest_jid() != jid.full: - tab.unlock() + tab.unlock(from_=jid.full) if contact is None: return roster.modified() 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): """ -- cgit v1.2.3