This commit is contained in:
js 2008-07-23 17:40:02 +00:00
parent 5441c32e0e
commit 6bfdebf347
2 changed files with 5 additions and 2 deletions

View File

@ -1348,6 +1348,7 @@ class ChatControl(ChatControlBase):
def update_ui(self):
# The name banner is drawn here
ChatControlBase.update_ui(self)
self.update_toolbar()
def _update_banner_state_image(self):
contact = gajim.contacts.get_contact_with_highest_priority(self.account,

View File

@ -1790,9 +1790,11 @@ class Interface:
'%s\nIt may have been tampered with.') % (jid)
if session.control:
session.control.print_conversation_line(details, 'status', '', tim)
session.control.print_conversation_line(details,
'status', '', tim)
else:
dialogs.WarningDialog(_('Unable to decrypt message'), details)
dialogs.WarningDialog(_('Unable to decrypt message'),
details)
# terminate the session
session.terminate_e2e()