mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 23:53:51 +09:00
Fix remaining nullref
This commit is contained in:
@ -247,13 +247,6 @@ namespace osu.Game.Overlays
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void Dispose(bool isDisposing)
|
|
||||||
{
|
|
||||||
base.Dispose(isDisposing);
|
|
||||||
|
|
||||||
musicController.TrackChanged -= trackChanged;
|
|
||||||
}
|
|
||||||
|
|
||||||
private Action pendingBeatmapSwitch;
|
private Action pendingBeatmapSwitch;
|
||||||
|
|
||||||
private void trackChanged(WorkingBeatmap beatmap, TrackChangeDirection direction = TrackChangeDirection.None)
|
private void trackChanged(WorkingBeatmap beatmap, TrackChangeDirection direction = TrackChangeDirection.None)
|
||||||
@ -313,6 +306,14 @@ namespace osu.Game.Overlays
|
|||||||
playlistButton.Enabled.Value = !disabled;
|
playlistButton.Enabled.Value = !disabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void Dispose(bool isDisposing)
|
||||||
|
{
|
||||||
|
base.Dispose(isDisposing);
|
||||||
|
|
||||||
|
if (musicController != null)
|
||||||
|
musicController.TrackChanged -= trackChanged;
|
||||||
|
}
|
||||||
|
|
||||||
private class MusicIconButton : IconButton
|
private class MusicIconButton : IconButton
|
||||||
{
|
{
|
||||||
public MusicIconButton()
|
public MusicIconButton()
|
||||||
|
Reference in New Issue
Block a user