mirror of
https://github.com/osukey/osukey.git
synced 2025-05-25 15:37:24 +09:00
Restart track playback when tapping to time
This commit is contained in:
parent
96ccd29bdc
commit
b88bce9b8b
@ -163,6 +163,12 @@ namespace osu.Game.Screens.Edit.Timing
|
|||||||
isHandlingTapping.BindValueChanged(handling =>
|
isHandlingTapping.BindValueChanged(handling =>
|
||||||
{
|
{
|
||||||
metronome.EnableClicking = !handling.NewValue;
|
metronome.EnableClicking = !handling.NewValue;
|
||||||
|
|
||||||
|
if (handling.NewValue)
|
||||||
|
{
|
||||||
|
editorClock.Seek(selectedGroup.Value.Time);
|
||||||
|
editorClock.Start();
|
||||||
|
}
|
||||||
}, true);
|
}, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user