Fix missed usages

This commit is contained in:
Dean Herbert
2020-10-09 18:50:05 +09:00
parent edaf6db5c6
commit 3838f405dd
4 changed files with 13 additions and 13 deletions

View File

@ -436,7 +436,7 @@ namespace osu.Game.Screens.Edit.Compose.Components
{
// Apply the start time at the newly snapped-to position
double offset = result.Time.Value - draggedObject.StartTime;
foreach (HitObject obj in SelectionHandler.SelectedHitObjects)
foreach (HitObject obj in Beatmap.SelectedHitObjects)
obj.StartTime += offset;
}