1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Reword comment to read better

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert 2022-06-01 16:01:34 +09:00 committed by GitHub
parent 475cc8174f
commit 58ba92772c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,9 +112,10 @@ namespace osu.Game.Screens.Edit.Timing
if (tcp == null)
{
timingPoint = new TimingControlPoint();
// During movement of a control point's offset, this clause can be hit momentarily.
// During movement of a control point's offset, this clause can be hit momentarily,
// as moving a control point is implemented by removing it and inserting it at the new time.
// We don't want to reset the `selectedGroupStartTime` here as we rely on having the
// last value to perform an offset traversal below.
// last value to update the waveform display below.
selectedGroupEndTime = beatmap.Value.Track.Length;
return;
}