1.1 --- a/HidDevice.cs Sun Feb 22 20:56:08 2015 +0100
1.2 +++ b/HidDevice.cs Tue Mar 03 21:07:44 2015 +0100
1.3 @@ -239,12 +239,12 @@
1.4
1.5 if (Product != null && Product.Length > 1)
1.6 {
1.7 - //Add the devices with a proper name at the top
1.8 + //This device as a proper name, use it
1.9 FriendlyName = Product + suffix;
1.10 }
1.11 else
1.12 {
1.13 - //Add other once at the bottom
1.14 + //No proper name just use the device ID instead
1.15 FriendlyName = "0x" + ProductId.ToString("X4") + suffix;
1.16 }
1.17