diff --git a/src/add-ons/input_server/devices/wacom/TabletDevice.cpp b/src/add-ons/input_server/devices/wacom/TabletDevice.cpp index a5c2847bac..ada77d5700 100644 --- a/src/add-ons/input_server/devices/wacom/TabletDevice.cpp +++ b/src/add-ons/input_server/devices/wacom/TabletDevice.cpp @@ -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 = "";