mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Synchronize the indicator light status of CameraShutter at startup. (#3365)
This commit is contained in:
@@ -481,9 +481,8 @@ namespace GHelper.Peripherals.Mouse
|
||||
{
|
||||
try
|
||||
{
|
||||
HidSharp.DeviceList.Local.GetHidDevices(VendorID(), ProductID())
|
||||
.First(x => x.DevicePath.Contains(path));
|
||||
return true;
|
||||
return HidSharp.DeviceList.Local.GetHidDevices(VendorID(), ProductID())
|
||||
.FirstOrDefault(x => x.DevicePath.Contains(path)) != null;
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user