Some minor improvements.

This commit is contained in:
Dean Herbert
2017-04-05 20:00:22 +09:00
parent 8d16e1efa2
commit 863dc44c4d
2 changed files with 14 additions and 10 deletions

View File

@ -155,7 +155,7 @@ namespace osu.Game.Overlays.Notifications
public void MarkAllRead()
{
notifications.Children.ForEach(n => n.Read = true);
notifications?.Children.ForEach(n => n.Read = true);
}
}
}