Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activity.py5
1 files changed, 4 insertions, 1 deletions
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()