diff --git a/osu.Game/Overlays/Notifications/ProgressNotification.cs b/osu.Game/Overlays/Notifications/ProgressNotification.cs index 2362cb11f6..9ab386e7d5 100644 --- a/osu.Game/Overlays/Notifications/ProgressNotification.cs +++ b/osu.Game/Overlays/Notifications/ProgressNotification.cs @@ -183,12 +183,17 @@ private void attemptPostCompletion() private ProgressNotificationState state; - protected virtual Notification CreateCompletionNotification() => new ProgressCompletionNotification + protected virtual Notification CreateCompletionNotification() => new SilencedProgressCompletionNotification { Activated = CompletionClickAction, Text = CompletionText }; + private partial class SilencedProgressCompletionNotification : ProgressCompletionNotification + { + public override bool IsImportant => false; + } + public override bool DisplayOnTop => false; public override bool IsImportant => false;