summaryrefslogtreecommitdiff
path: root/src/grail-recognizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/grail-recognizer.c')
-rw-r--r--src/grail-recognizer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/grail-recognizer.c b/src/grail-recognizer.c
index bcfbc2c..5f4bee0 100644
--- a/src/grail-recognizer.c
+++ b/src/grail-recognizer.c
@@ -47,10 +47,9 @@ void gru_recognize(struct grail *ge, const struct touch_frame *frame)
47 if (!ge->gin || !ge->gru) 47 if (!ge->gin || !ge->gru)
48 return; 48 return;
49 gru_motion(ge, frame); 49 gru_motion(ge, frame);
50 gru_pan(ge, frame); 50 gru_drag(ge, frame);
51 gru_pinch(ge, frame); 51 gru_pinch(ge, frame);
52 gru_rotate(ge, frame); 52 gru_rotate(ge, frame);
53 gru_combo(ge, frame);
54 gru_tapping(ge, frame); 53 gru_tapping(ge, frame);
55 ge->gru->frame = *frame; 54 ge->gru->frame = *frame;
56} 55}