Add null checks to unguarded resolved-as-null fields

This commit is contained in:
Bartłomiej Dach
2020-11-14 14:48:48 +01:00
parent aae59dc3cf
commit 610ed99ae3
11 changed files with 24 additions and 13 deletions

View File

@ -128,7 +128,7 @@ namespace osu.Game.Screens.Edit.Timing
controlPointGroups.BindCollectionChanged((sender, args) =>
{
table.ControlGroups = controlPointGroups;
changeHandler.SaveState();
changeHandler?.SaveState();
}, true);
}