diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-09-26 22:52:39 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-09-27 13:53:02 -0700 |
commit | 7958f6b75b3c6b8a827188af2e684f181bdd7688 (patch) | |
tree | e6ce3624b1ccf5433501d24996781543981d1661 | |
parent | 29b2d9cdf5095399b79d9ff2a2f12f5a9c49cf1f (diff) |
XQuartz: Add pressure/tilt property labels
-rw-r--r-- | hw/xquartz/darwin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index 8836782a2..30b890589 100644 --- a/hw/xquartz/darwin.c +++ b/hw/xquartz/darwin.c @@ -353,6 +353,9 @@ static int DarwinTabletProc(DeviceIntPtr pPointer, int what) { axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_X); axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_Y); + axes_labels[2] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_PRESSURE); + axes_labels[3] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_TILT_X); + axes_labels[4] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_TILT_Y); // Set button map. InitPointerDeviceStruct((DevicePtr)pPointer, map, NBUTTONS, |