Restart track playback when tapping to time

This commit is contained in:
Dean Herbert 2022-06-01 20:57:16 +09:00
parent 96ccd29bdc
commit b88bce9b8b

View File

@ -163,6 +163,12 @@ namespace osu.Game.Screens.Edit.Timing
isHandlingTapping.BindValueChanged(handling =>
{
metronome.EnableClicking = !handling.NewValue;
if (handling.NewValue)
{
editorClock.Seek(selectedGroup.Value.Time);
editorClock.Start();
}
}, true);
}