summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clutter/evdev/clutter-device-manager-evdev.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/clutter/evdev/clutter-device-manager-evdev.c b/clutter/evdev/clutter-device-manager-evdev.c
index 3645d287b..2ffceb9b2 100644
--- a/clutter/evdev/clutter-device-manager-evdev.c
+++ b/clutter/evdev/clutter-device-manager-evdev.c
@@ -487,8 +487,11 @@ new_absolute_motion_event (ClutterInputDevice *input_device,
_clutter_input_device_set_stage (seat->core_pointer, stage);
- seat->pointer_x = x;
- seat->pointer_y = y;
+ if (clutter_input_device_get_device_type (input_device) != CLUTTER_TABLET_DEVICE)
+ {
+ seat->pointer_x = x;
+ seat->pointer_y = y;
+ }
return event;
}