1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 08:13:31 +08:00

Don't cancel a ProgressNotification when clicking by default

This commit is contained in:
Dean Herbert 2017-07-28 16:53:49 +09:00
parent b3e3c4a226
commit 74044baeff

View File

@ -130,6 +130,9 @@ namespace osu.Game.Overlays.Notifications
});
State = ProgressNotificationState.Queued;
// don't close on click by default.
Activated = () => false;
}
[BackgroundDependencyLoader]