|
@@ -3365,8 +3365,14 @@ void wacom_setup_device_quirks(struct wacom *wacom)
|
|
if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
|
|
if (features->type >= INTUOSHT && features->type <= BAMBOO_PT)
|
|
features->device_type |= WACOM_DEVICETYPE_PAD;
|
|
features->device_type |= WACOM_DEVICETYPE_PAD;
|
|
|
|
|
|
- features->x_max = 4096;
|
|
|
|
- features->y_max = 4096;
|
|
|
|
|
|
+ if (features->type == INTUOSHT2) {
|
|
|
|
+ features->x_max = features->x_max / 10;
|
|
|
|
+ features->y_max = features->y_max / 10;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ features->x_max = 4096;
|
|
|
|
+ features->y_max = 4096;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
|
|
else if (features->pktlen == WACOM_PKGLEN_BBTOUCH) {
|
|
features->device_type |= WACOM_DEVICETYPE_PAD;
|
|
features->device_type |= WACOM_DEVICETYPE_PAD;
|