Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2013-03-15 19:07:56 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2013-03-15 19:07:56 (GMT)
commitee3039c3b6e8f3d688a3599fb989541d6dbbb396 (patch)
treee087f78ba10038ee370916d15ab4e9d268913b98
parent4dc88118d5b0269380b592a23ba744599c4fe416 (diff)
Add a scroled window
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
-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()