Skip to content

Commit

Permalink
Gtk : Fixes typo
Browse files Browse the repository at this point in the history
Adds a basic show() function to Gtk's chat window so there is no traceback anymore when the core calls it
  • Loading branch information
arantes555 committed Oct 5, 2010
1 parent e0b109d commit bf4ce0e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions amsn2/ui/front_ends/gtk/chat_window.py
Expand Up @@ -63,6 +63,10 @@ def add_chat_widget(self, chat_widget):
def set_title(self, title):
gtk.Window.set_title(self, title)

def show(self):
self.show_all()


class aMSNChatWidget(base.aMSNChatWidget, gtk.VBox):
def __init__(self, amsn_conversation, parent, contacts_uid):
gtk.VBox.__init__(self, False, 0)
Expand Down

0 comments on commit bf4ce0e

Please sign in to comment.