2.0.0 #92

Merged
defnotken merged 171 commits from 2.0.0 into master 2025-12-21 17:19:36 +00:00
Showing only changes of commit 6395b1eb52 - Show all commits

View File

@@ -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)
{