From dd5fb6db890f30e214f29625f8e1c42604f8caaf Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Mon, 13 Jul 2020 23:42:07 +0200 Subject: [PATCH] Changed UpdateQueue.Dispose to be virtual --- RGB.NET.Core/Update/Devices/UpdateQueue.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RGB.NET.Core/Update/Devices/UpdateQueue.cs b/RGB.NET.Core/Update/Devices/UpdateQueue.cs index 05aff8d..da5c82c 100644 --- a/RGB.NET.Core/Update/Devices/UpdateQueue.cs +++ b/RGB.NET.Core/Update/Devices/UpdateQueue.cs @@ -100,7 +100,8 @@ namespace RGB.NET.Core _currentDataSet = null; } - public void Dispose() + /// + public virtual void Dispose() { _updateTrigger.Starting -= OnStartup; _updateTrigger.Update -= OnUpdate;