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-04-11 20:27:18 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2013-04-11 20:27:18 (GMT)
commit18f44404501f1b04561cf6ef1d94c0cc78bf8c9d (patch)
tree2682ba6d46178bd9e25c41001bc8dca1edbe5d3e
parentd3e97b327c500ba023d8f37c91fd1e5b35e47854 (diff)
Disable kinetic scrolling
This is needed to interact with the globes using touch Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
-rw-r--r--historietaactivity.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/historietaactivity.py b/historietaactivity.py
index 481a611..ae9e7c1 100644
--- a/historietaactivity.py
+++ b/historietaactivity.py
@@ -123,6 +123,7 @@ class HistorietaActivity(activity.Activity):
scrolled = Gtk.ScrolledWindow()
scrolled.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.ALWAYS)
scrolled.add_with_viewport(self.page)
+ scrolled.set_kinetic_scrolling(False)
scrolled.show_all()
self._slideview = SlideView(self)