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

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();