mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
Fixed AbtractRGBDevice not updating DeviceRectangle on Location change
This commit is contained in:
parent
0a378b3424
commit
4d5728a8be
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user