fix doubletap

This commit is contained in:
Mathieu Virbel 2011-01-14 00:16:04 +01:00
parent b92e721fba
commit 25b9777b1b
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class InputPostprocDoubleTap(object):
for type, touch in events:
if type == 'down':
double_tap = self.find_double_tap(touch)
if touch_double_tap:
if double_tap:
touch.is_double_tap = True
time = touch.time_start - double_tap.time_start
touch.double_tap_time = time