Merge pull request #7756 from peppy/seek-to-endtime-on-placement

Seek to previous object's end time on successful placement
This commit is contained in:
Dean Herbert 2020-02-11 08:45:15 +09:00 committed by GitHub
commit 804d210250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ public void EndPlacement(HitObject hitObject, bool commit)
{
EditorBeatmap.Add(hitObject);
adjustableClock.Seek(hitObject.StartTime);
adjustableClock.Seek(hitObject.GetEndTime());
}
showGridFor(Enumerable.Empty<HitObject>());