1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 04:32:11 +08:00

Reduce notification post delay now that it's less important

This commit is contained in:
Dean Herbert
2022-08-30 21:04:38 +09:00
Unverified
parent e9cfaa76c9
commit 95ce78a50c
+1 -1
View File
@@ -117,7 +117,7 @@ namespace osu.Game.Overlays
if (enabled)
// 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 : 1000);
notificationsEnabler = Scheduler.AddDelayed(() => processingPosts = true, State.Value == Visibility.Visible ? 0 : 100);
else
processingPosts = false;
}