1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Fixed wrong assignment in DeviceUpdateTrigger

This commit is contained in:
Darth Affe 2018-06-03 10:02:52 +02:00
parent 2ce7b44669
commit ce745f0b6e

View File

@ -76,7 +76,7 @@ namespace RGB.NET.Core
/// <param name="updateRateHardLimit">The hard limit of the update rate of this trigger.</param>
public DeviceUpdateTrigger(double updateRateHardLimit)
{
this._updateRateHardLimit = updateRateHardLimit;
this.UpdateRateHardLimit = updateRateHardLimit;
}
#endregion