From 174accf5293daec74706334e82501b6907c6cf6f Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Sun, 15 Jul 2018 17:27:47 +0200 Subject: [PATCH] Fix wrong IsConnected-check for logitech per-key-devices --- RGB.NET.Devices.Logitech/LogitechDeviceProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RGB.NET.Devices.Logitech/LogitechDeviceProvider.cs b/RGB.NET.Devices.Logitech/LogitechDeviceProvider.cs index 4f7d789..a9d08f1 100644 --- a/RGB.NET.Devices.Logitech/LogitechDeviceProvider.cs +++ b/RGB.NET.Devices.Logitech/LogitechDeviceProvider.cs @@ -114,7 +114,7 @@ namespace RGB.NET.Devices.Logitech try { - if (DeviceChecker.IsZoneDeviceConnected) + if (DeviceChecker.IsPerDeviceDeviceConnected) { (string model, RGBDeviceType deviceType, int _, int _, string imageLayout, string layoutPath) = DeviceChecker.PerKeyDeviceData; if (loadFilter.HasFlag(deviceType)) //TODO DarthAffe 07.12.2017: Check if it's worth to try another device if the one returned doesn't match the filter