mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 15:33:05 +08:00
Only seek forwards if not already beyond the placed object
This commit is contained in:
parent
b5a7023312
commit
e09a1bf546
@ -257,7 +257,8 @@ namespace osu.Game.Rulesets.Edit
|
||||
{
|
||||
EditorBeatmap.Add(hitObject);
|
||||
|
||||
adjustableClock.Seek(hitObject.StartTime);
|
||||
if (adjustableClock.CurrentTime < hitObject.StartTime)
|
||||
adjustableClock.Seek(hitObject.StartTime);
|
||||
}
|
||||
|
||||
showGridFor(Enumerable.Empty<HitObject>());
|
||||
|
Loading…
Reference in New Issue
Block a user