1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-23 07:18:45 +08:00

Fix completion notifications not always showing as toasts

This commit is contained in:
Dean Herbert 2022-09-02 00:51:59 +09:00
parent 56886fed09
commit eca7b8f988

View File

@ -137,7 +137,9 @@ namespace osu.Game.Overlays
private readonly Scheduler postScheduler = new Scheduler();
public override bool IsPresent => base.IsPresent || postScheduler.HasPendingTasks;
public override bool IsPresent => base.IsPresent
|| postScheduler.HasPendingTasks
|| toastTray.IsDisplayingToasts;
private bool processingPosts = true;