mirror of https://github.com/ppy/osu
Fix incorrect value being set
This commit is contained in:
parent
11a6c9bdcc
commit
f058f5e977
|
@ -654,7 +654,7 @@ private void updateComponentFromBeatmap(WorkingBeatmap beatmap)
|
|||
BeatmapDetails.Beatmap = beatmap;
|
||||
|
||||
if (music?.CurrentTrack != null)
|
||||
music.CurrentTrack.Looping = false;
|
||||
music.CurrentTrack.Looping = true;
|
||||
}
|
||||
|
||||
private readonly WeakReference<ITrack> lastTrack = new WeakReference<ITrack>(null);
|
||||
|
|
Loading…
Reference in New Issue