1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Merge pull request #10193 from tilda/notification-consistency-collections-import

Change collection deletion notification to be consistent
This commit is contained in:
Dean Herbert 2020-09-20 21:32:41 +09:00 committed by GitHub
commit e119b78e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,7 +230,7 @@ namespace osu.Game.Collections
public void DeleteAll()
{
Collections.Clear();
PostNotification?.Invoke(new SimpleNotification { Text = "Deleted all collections!" });
PostNotification?.Invoke(new ProgressCompletionNotification { Text = "Deleted all collections!" });
}
private readonly object saveLock = new object();