diff --git a/src/add-ons/input_server/devices/wacom/TabletDevice.cpp b/src/add-ons/input_server/devices/wacom/TabletDevice.cpp index 383bb4555c..df6c8a95b5 100644 --- a/src/add-ons/input_server/devices/wacom/TabletDevice.cpp +++ b/src/add-ons/input_server/devices/wacom/TabletDevice.cpp @@ -261,6 +261,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 0x0301: // One by Wacom CTL-671 + SetDevice(21648.0, 13530.0, DEVICE_BAMBOO_PT); + break; case 0x037b: // One by Wacom CTL-672 SetDevice(21648.0, 13530.0, DEVICE_BAMBOO_PT); break; @@ -874,6 +877,9 @@ TabletDevice::_GetName(uint16 productID, const char** name) const case 0xDD: *name = "Wacom Bamboo Pen/Connect (CTL-470)"; break; + case 0x0301: + *name = "One by Wacom (CTL-671)"; + break; case 0x037b: *name = "One by Wacom (CTL-672)"; break;