From 6395b1eb52a646f4a22a3f7087513ac3f2ed7c07 Mon Sep 17 00:00:00 2001 From: cake Date: Fri, 12 Dec 2025 06:06:50 +0100 Subject: [PATCH] Removal of use notifcation for downloads as its not used at all --- LightlessSync/UI/DownloadUi.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LightlessSync/UI/DownloadUi.cs b/LightlessSync/UI/DownloadUi.cs index 37119e2..c54cf46 100644 --- a/LightlessSync/UI/DownloadUi.cs +++ b/LightlessSync/UI/DownloadUi.cs @@ -102,9 +102,9 @@ public class DownloadUi : WindowMediatorSubscriberBase var limiterSnapshot = _pairProcessingLimiter.GetSnapshot(); // Check if download notifications are enabled (not set to TextOverlay) - var useNotifications = _configService.Current.UseLightlessNotifications - ? _configService.Current.LightlessDownloadNotification != NotificationLocation.LightlessUi - : _configService.Current.UseNotificationsForDownloads; + var useNotifications = + _configService.Current.UseLightlessNotifications && + _configService.Current.LightlessDownloadNotification == NotificationLocation.LightlessUi; if (useNotifications) {