From: Neil <neil@dip.sun.ac.za>
Date: Thu, 18 Jul 2013 16:07:23 +0000 (+0200)
Subject: Less buggy Kivy 1.7 hackery
X-Git-Url: https://git.ctpug.org.za/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=erdslangetjie.git

Less buggy Kivy 1.7 hackery
---

diff --git a/erdslangetjie/localwidgets.py b/erdslangetjie/localwidgets.py
index 06f6a0a..a4fca0f 100644
--- a/erdslangetjie/localwidgets.py
+++ b/erdslangetjie/localwidgets.py
@@ -368,7 +368,13 @@ class MyScrollView(ScrollView):
         for child in self.children:
             if child.on_touch_down(touch):
                 return True
-        return super(MyScrollView, self).on_touch_up(touch)
+        return super(MyScrollView, self).on_touch_down(touch)
+
+    def on_touch_move(self, touch):
+        for child in self.children:
+            if child.on_touch_move(touch):
+                return True
+        return super(MyScrollView, self).on_touch_move(touch)
 
     def on_touch_up(self, touch):
         for child in self.children: