From ee3039c3b6e8f3d688a3599fb989541d6dbbb396 Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Fri, 15 Mar 2013 19:07:56 +0000 Subject: Add a scroled window Signed-off-by: Gonzalo Odiard --- diff --git a/activity.py b/activity.py index 7031875..61780bf 100644 --- a/activity.py +++ b/activity.py @@ -72,7 +72,10 @@ class JournalShare(activity.Activity): self.view.load_uri('http://localhost:2500/web/index.html') self.view.show() - self.set_canvas(self.view) + scrolled = Gtk.ScrolledWindow() + scrolled.add(self.view) + scrolled.show() + self.set_canvas(scrolled) # collaboration self.unused_download_tubes = set() -- cgit v0.9.1