1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +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() public void DeleteAll()
{ {
Collections.Clear(); Collections.Clear();
PostNotification?.Invoke(new SimpleNotification { Text = "Deleted all collections!" }); PostNotification?.Invoke(new ProgressCompletionNotification { Text = "Deleted all collections!" });
} }
private readonly object saveLock = new object(); private readonly object saveLock = new object();