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

Changed UpdateQueue.Dispose to be virtual

This commit is contained in:
Darth Affe 2020-07-13 23:42:07 +02:00
parent 7c6db8738c
commit dd5fb6db89

View File

@ -100,7 +100,8 @@ namespace RGB.NET.Core
_currentDataSet = null;
}
public void Dispose()
/// <inheritdoc />
public virtual void Dispose()
{
_updateTrigger.Starting -= OnStartup;
_updateTrigger.Update -= OnUpdate;