Merge branch 'master' into android-support

This commit is contained in:
Mathieu Virbel 2012-01-28 16:12:33 +01:00
commit 8f924d0936
1 changed files with 8 additions and 0 deletions

View File

@ -244,6 +244,14 @@ class Popup(FloatLayout):
super(Popup, self).on_touch_down(touch)
return True
def on_touch_move(self, touch):
super(Popup, self).on_touch_move(touch)
return True
def on_touch_up(self, touch):
super(Popup, self).on_touch_up(touch)
return True
def on__anim_alpha(self, instance, value):
if value == 0 and self._window is not None:
self._window.remove_widget(self)