mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Don't update time if it hasn't changed
This commit is contained in:
@ -93,6 +93,9 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
|
||||
private void changeSelectedGroupTime(in double time)
|
||||
{
|
||||
if (time == SelectedGroup.Value.Time)
|
||||
return;
|
||||
|
||||
changeHandler?.BeginChange();
|
||||
|
||||
var currentGroupItems = SelectedGroup.Value.ControlPoints.ToArray();
|
||||
|
Reference in New Issue
Block a user