From 1d1802cff732c0ee21d66a826322e2a793892b44 Mon Sep 17 00:00:00 2001 From: Matthew Einhorn Date: Mon, 25 Aug 2014 11:13:29 -0400 Subject: [PATCH] Call super in bubble. --- kivy/uix/textinput.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kivy/uix/textinput.py b/kivy/uix/textinput.py index 166a842d9..3f5572982 100644 --- a/kivy/uix/textinput.py +++ b/kivy/uix/textinput.py @@ -250,6 +250,7 @@ class TextInputCutCopyPaste(Bubble): def on_touch_down(self, touch): if self.collide_point(*touch.pos): FocusBehavior.ignored_touch.append(touch) + return super(TextInputCutCopyPaste, self).on_touch_down(touch) def on_textinput(self, instance, value): global Clipboard