events: Update current time on CLUTTER_TOUCH_BEGIN events

Just as with key/button press events, update the current interaction
time when a touch begins on a window.
This commit is contained in:
Carlos Garnacho 2014-06-19 22:23:00 +02:00
parent b9687d1a72
commit 4ad2865cce

View File

@ -120,7 +120,9 @@ meta_display_handle_event (MetaDisplay *display,
display->current_time = event->any.time;
if (window && !window->override_redirect &&
(event->type == CLUTTER_KEY_PRESS || event->type == CLUTTER_BUTTON_PRESS))
(event->type == CLUTTER_KEY_PRESS ||
event->type == CLUTTER_BUTTON_PRESS ||
event->type == CLUTTER_TOUCH_BEGIN))
{
if (CurrentTime == display->current_time)
{