Skip to content

Commit

Permalink
[GTK] Added status texts for user joining/leaving conversation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonte committed Aug 10, 2009
1 parent c146964 commit 2827052
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions amsn2/gui/front_ends/gtk/chat_window.py
Expand Up @@ -348,10 +348,12 @@ def onMessageReceived(self, messageview, formatting=None):
def onUserJoined(self, contact):
print "%s joined the conversation" % (contact,)
self.__print_info("%s joined the conversation" % (contact,))
self.__set_statusbar_text("%s joined the comversation" % (contact,))

def onUserLeft(self, contact):
print "%s left the conversation" % (contact,)
self.__print_info("%s left the conversation" % (contact,))
self.__set_statusbar_text("%s left the comversation" % (contact,))
self.__typingStopped()

def onUserTyping(self, contact):
Expand Down

0 comments on commit 2827052

Please sign in to comment.