Unpause music when changing selection at song select

This commit is contained in:
Dean Herbert
2019-08-19 11:30:04 +09:00
parent 97580a4117
commit 1f00793891
2 changed files with 20 additions and 2 deletions

View File

@ -92,6 +92,15 @@ namespace osu.Game.Overlays
});
}
/// <summary>
/// Start playing the current track (if not already playing).
/// </summary>
public void Play()
{
if (!IsPlaying)
TogglePause();
}
/// <summary>
/// Toggle pause / play.
/// </summary>