From 3e29cbb158e0df5d58775261dc85a52614db442f Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 18 Jul 2013 18:07:23 +0200 Subject: [PATCH] Less buggy Kivy 1.7 hackery --- erdslangetjie/localwidgets.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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: -- 2.34.1