wacom: Add Product ID for One by Wacom (CTL-672) tablet.

Change-Id: I3d874c1ab5ccdd956a9f11132c4a59fedd423c1a
This commit is contained in:
Gerasim Troeglazov 2020-06-15 16:13:48 +10:00
parent f32bcfd516
commit 4814d0aa44

View File

@ -258,6 +258,9 @@ TabletDevice::DetectDevice(const DeviceReader* reader)
case 0xDD: // Wacom Bamboo Pen/Connect (CTL-470) (from Linux Wacom Project)
SetDevice(14720.0, 9200.0, DEVICE_BAMBOO_PT);
break;
case 0x037b: // One by Wacom CTL-672
SetDevice(21648.0, 13530.0, DEVICE_BAMBOO_PT);
break;
default:
status = B_BAD_VALUE;
break;
@ -868,6 +871,9 @@ TabletDevice::_GetName(uint16 productID, const char** name) const
case 0xDD:
*name = "Wacom Bamboo Pen/Connect (CTL-470)";
break;
case 0x037b:
*name = "One by Wacom (CTL-672)";
break;
default:
*name = "<unkown wacom tablet>";