Tidy up EditorBeatmap slightly

This commit is contained in:
Dean Herbert
2020-10-08 18:06:46 +09:00
parent 1027b608ff
commit afed832b19
6 changed files with 24 additions and 24 deletions

View File

@ -392,7 +392,7 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
return;
repeatHitObject.RepeatCount = proposedCount;
beatmap.UpdateHitObject(hitObject);
beatmap.Update(hitObject);
break;
case IHasDuration endTimeHitObject:
@ -402,7 +402,7 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
return;
endTimeHitObject.Duration = snappedTime - hitObject.StartTime;
beatmap.UpdateHitObject(hitObject);
beatmap.Update(hitObject);
break;
}
}