Remove the Clock.schedule for setting focus. It's not needed and it does not solve the actual issue it was introduced for.

This commit is contained in:
akshayaurora 2015-01-29 23:04:06 +05:30
parent 2a00a48e23
commit 0798f3c8ab
1 changed files with 1 additions and 3 deletions

View File

@ -878,10 +878,8 @@ class FocusBehavior(object):
if next:
self.focused = False
def _fn(dt):
next.focused = True
next.focused = True
Clock.schedule_once(_fn)
return True
return False