diff --git a/NightGlow/Services/NightGlowService.cs b/NightGlow/Services/NightGlowService.cs index 1d1cdac..3b70ebb 100644 --- a/NightGlow/Services/NightGlowService.cs +++ b/NightGlow/Services/NightGlowService.cs @@ -8,6 +8,7 @@ using System.Diagnostics; using System.Linq; using System.Reactive.Disposables; +using System.Threading.Tasks; namespace NightGlow.Services; @@ -107,6 +108,11 @@ private void DisplaysChanged() { _gammaService.InvalidateDeviceContexts(); _ddcService.UpdateMonitors(); + + Task.Delay(2000).ContinueWith(_ => + { + UpdateConfiguration(); + }); } public void UnregisterHotKeys()