mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
Merge pull request #95 from DarthAffe/Fix/IncorrectDeviceRect
Fixed AbtractRGBDevice not updating DeviceRectangle on Location change
This commit is contained in:
commit
cd45fdfb99
@ -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