diff --git a/RGB.NET.Core/Devices/AbstractRGBDevice.cs b/RGB.NET.Core/Devices/AbstractRGBDevice.cs index cd76493..2ed8377 100644 --- a/RGB.NET.Core/Devices/AbstractRGBDevice.cs +++ b/RGB.NET.Core/Devices/AbstractRGBDevice.cs @@ -32,7 +32,11 @@ namespace RGB.NET.Core public Point Location { get => _location; - set => SetProperty(ref _location, value); + set + { + if (SetProperty(ref _location, value)) + UpdateActualData(); + } } private Size _size = Size.Invalid;