diff --git a/kivy/uix/popup.py b/kivy/uix/popup.py index bbf8d4975..0ed25297f 100644 --- a/kivy/uix/popup.py +++ b/kivy/uix/popup.py @@ -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)