From 3b776917d8037bec30a62b802433194ecead929f Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Thu, 26 Aug 2010 16:16:22 +0200 Subject: Plug hole in tentative gestures state during finger transition During finger configuration transition, as well as after a tap, there would be no tentative gestures registered in the instantiator, leading to faulty emission of motion events. Fixed with this patch. Signed-off-by: Henrik Rydberg --- src/grail-inserter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/grail-inserter.c') diff --git a/src/grail-inserter.c b/src/grail-inserter.c index d77da79..a54b73a 100644 --- a/src/grail-inserter.c +++ b/src/grail-inserter.c @@ -125,7 +125,7 @@ void gin_frame_end(struct grail *ge, continue; if (s->priority > hold) hold = s->priority; - if (s->status == GRAIL_STATUS_BEGIN) + if (s->status != GRAIL_STATUS_UPDATE) continue; if (s->priority > discard) discard = s->priority; -- cgit v1.2.3