[clutter/wip/evdev-tablet-support: 163/164] evdev: Avoid updating seat pointer position on tablet events
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter/wip/evdev-tablet-support: 163/164] evdev: Avoid updating seat pointer position on tablet events
- Date: Wed, 21 Oct 2015 18:05:03 +0000 (UTC)
commit 866140c02fdf65c5253ac00c9bda775d4200bb25
Author: Carlos Garnacho <carlosg gnome org>
Date: Wed Jun 17 16:56:59 2015 +0200
evdev: Avoid updating seat pointer position on tablet events
clutter/evdev/clutter-device-manager-evdev.c | 7 +++++--
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 4eba6df..81c61fe 100644
--- a/clutter/evdev/clutter-device-manager-evdev.c
+++ b/clutter/evdev/clutter-device-manager-evdev.c
@@ -415,8 +415,11 @@ notify_absolute_motion (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;
+ }
queue_event (event);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]