1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 08:48:30 +00:00

Fixed possible cache-issue in the RectangleKeyGroup

This commit is contained in:
Darth Affe 2017-01-08 10:51:10 +01:00
parent 8a5581c660
commit 92fcbcff2a

View File

@ -35,10 +35,19 @@ namespace CUE.NET.Groups
}
}
private float _minOverlayPercentage;
/// <summary>
/// Gets or sets the minimal percentage overlay a LED must have with the <see cref="Rectangle" /> to be taken into the ledgroup.
/// </summary>
public float MinOverlayPercentage { get; set; }
public float MinOverlayPercentage
{
get { return _minOverlayPercentage; }
set
{
_minOverlayPercentage = value;
_ledCache = null;
}
}
#endregion