projects
/
erdslangetjie.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cefa33
)
Less buggy Kivy 1.7 hackery
master
author
Neil
<neil@dip.sun.ac.za>
Thu, 18 Jul 2013 16:07:23 +0000
(18:07 +0200)
committer
Neil
<neil@dip.sun.ac.za>
Thu, 18 Jul 2013 16:07:23 +0000
(18:07 +0200)
erdslangetjie/localwidgets.py
patch
|
blob
|
history
diff --git
a/erdslangetjie/localwidgets.py
b/erdslangetjie/localwidgets.py
index 06f6a0a866de68d748483c3305e50eea2e2281c3..a4fca0fd2cd70e5b3a599a993b4c70accad16ae1 100644
(file)
--- 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: