Fix missing return for super on_key_down.

This commit is contained in:
Matthew Einhorn 2015-01-29 14:34:59 -05:00
parent 63f51da853
commit 14c95acc5c
1 changed files with 1 additions and 1 deletions

View File

@ -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)