diff options
Diffstat (limited to 'grapher')
| -rw-r--r-- | grapher/Models/Devices/DeviceIDManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Devices/DeviceIDManager.cs b/grapher/Models/Devices/DeviceIDManager.cs index 8592763..39856a1 100644 --- a/grapher/Models/Devices/DeviceIDManager.cs +++ b/grapher/Models/Devices/DeviceIDManager.cs @@ -46,9 +46,9 @@ namespace grapher.Models.Devices if (found) SetActive(anyDevice); - foreach (var (name, id) in RawInputInterop.GetDeviceIDs()) + foreach (string id in RawInputInterop.GetDeviceIDs()) { - var deviceItem = new DeviceIDItem(name, id, this); + var deviceItem = new DeviceIDItem(string.Empty, id, this); if (!found && deviceItem.ID.Equals(devID)) { SetActive(deviceItem); |