Removal of use notifcation for downloads as its not used at all

This commit is contained in:
cake
2025-12-12 06:06:50 +01:00
parent 0671c46e5d
commit 6395b1eb52

View File

@@ -102,9 +102,9 @@ public class DownloadUi : WindowMediatorSubscriberBase
var limiterSnapshot = _pairProcessingLimiter.GetSnapshot(); var limiterSnapshot = _pairProcessingLimiter.GetSnapshot();
// Check if download notifications are enabled (not set to TextOverlay) // Check if download notifications are enabled (not set to TextOverlay)
var useNotifications = _configService.Current.UseLightlessNotifications var useNotifications =
? _configService.Current.LightlessDownloadNotification != NotificationLocation.LightlessUi _configService.Current.UseLightlessNotifications &&
: _configService.Current.UseNotificationsForDownloads; _configService.Current.LightlessDownloadNotification == NotificationLocation.LightlessUi;
if (useNotifications) if (useNotifications)
{ {