1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:47:52 +08:00

Increase delay back slightly on notifications posting after disabled period

This commit is contained in:
Dean Herbert 2022-09-27 17:32:30 +09:00
parent aa3956cfbb
commit c61f5403ab

View File

@ -113,7 +113,7 @@ namespace osu.Game.Overlays
if (enabled) if (enabled)
// we want a slight delay before toggling notifications on to avoid the user becoming overwhelmed. // we want a slight delay before toggling notifications on to avoid the user becoming overwhelmed.
notificationsEnabler = Scheduler.AddDelayed(() => processingPosts = true, State.Value == Visibility.Visible ? 0 : 100); notificationsEnabler = Scheduler.AddDelayed(() => processingPosts = true, State.Value == Visibility.Visible ? 0 : 250);
else else
processingPosts = false; processingPosts = false;
} }