commit | 9484b695b9975779be9270f628e161fce3506ed6 | [log] [tgz] |
---|---|---|
author | Jonas Ådahl <jadahl@gmail.com> | Mon Dec 02 22:05:03 2013 +0100 |
committer | Kristian Høgsberg <krh@bitplanet.net> | Mon Dec 02 15:24:05 2013 -0800 |
tree | b4109ac3321dd5ee121dc4a11a35999ac78b4c83 | |
parent | 37d38d932cea8a642e644d091747d0d9c046a00a [diff] [blame] |
input: Keep track of number of touch points inside touch struct Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
diff --git a/src/shell.c b/src/shell.c index dfcb525..00e0f1c 100644 --- a/src/shell.c +++ b/src/shell.c
@@ -1457,7 +1457,7 @@ (struct weston_touch_move_grab *) container_of( grab, struct shell_touch_grab, grab); - if (grab->touch->seat->num_tp == 0) { + if (grab->touch->num_tp == 0) { shell_touch_grab_end(&move->base); free(move); }