mirror of
https://github.com/ppy/osu
synced 2024-12-14 10:57:41 +00:00
Fix nullref on disposing BeatmapSetOverlay before load
Only affects VisualTests
This commit is contained in:
parent
b0b3c9167e
commit
cf4fc05be3
@ -232,7 +232,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
||||
protected override void Dispose(bool isDisposing)
|
||||
{
|
||||
base.Dispose(isDisposing);
|
||||
beatmaps.BeatmapSetAdded -= handleBeatmapAdd;
|
||||
if (beatmaps != null) beatmaps.BeatmapSetAdded -= handleBeatmapAdd;
|
||||
}
|
||||
|
||||
private void handleBeatmapAdd(BeatmapSetInfo beatmap)
|
||||
|
Loading…
Reference in New Issue
Block a user