diff --git a/osu.Game/Overlays/MusicController.cs b/osu.Game/Overlays/MusicController.cs index 9d79c0cb37..e96050957c 100644 --- a/osu.Game/Overlays/MusicController.cs +++ b/osu.Game/Overlays/MusicController.cs @@ -266,7 +266,11 @@ namespace osu.Game.Overlays return scaledSprite; } - private void seek(float position) => CurrentTrack?.Seek(CurrentTrack.Length * position); + private void seek(float position) + { + CurrentTrack?.Seek(CurrentTrack.Length * position); + CurrentTrack?.Start(); + } //placeholder for toggling protected override void PopIn() => FadeIn(500);