mirror of https://github.com/kivy/kivy.git
Fix missing return for super on_key_down.
This commit is contained in:
parent
63f51da853
commit
14c95acc5c
|
@ -71,7 +71,7 @@ class KivyRenderTextInput(CodeInput):
|
|||
self.catalog.change_kv(True)
|
||||
return
|
||||
|
||||
super(KivyRenderTextInput, self).keyboard_on_key_down(
|
||||
return super(KivyRenderTextInput, self).keyboard_on_key_down(
|
||||
window, keycode, text, modifiers)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue