Less buggy Kivy 1.7 hackery master
authorNeil <neil@dip.sun.ac.za>
Thu, 18 Jul 2013 16:07:23 +0000 (18:07 +0200)
committerNeil <neil@dip.sun.ac.za>
Thu, 18 Jul 2013 16:07:23 +0000 (18:07 +0200)
erdslangetjie/localwidgets.py

index 06f6a0a866de68d748483c3305e50eea2e2281c3..a4fca0fd2cd70e5b3a599a993b4c70accad16ae1 100644 (file)
@@ -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: