1
0
Fork 0

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 committed by Jasper St. Pierre
parent 0db172edbf
commit a05ae8654c

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