From: Neil 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/?p=erdslangetjie.git;a=commitdiff_plain;h=HEAD 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: