~ubuntu-branches/ubuntu/precise/lernid/precise

« back to all changes in this revision

Viewing changes to lernid/widgets/WebChatroom.py

  • Committer: Stefano Rivera
  • Date: 2011-06-23 15:16:12 UTC
  • Revision ID: stefano@rivera.za.net-20110623151612-d2g494vptp868cbu
Tags: 0.8.0.2
Replace tab with spaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        Widget.__init__(self, 'chatroom')
38
38
        scroll = gtk.ScrolledWindow()
39
39
        scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
40
 
        self._chat = webkit.WebView()
 
40
        self._chat = webkit.WebView()
41
41
        scroll.add_with_viewport(self._chat)
42
42
        self.add(scroll)
43
43