mirror of
https://github.com/osukey/osukey.git
synced 2025-08-01 21:58:46 +09:00
Remove necessity of AutoGenerated flag
This commit is contained in:
@ -228,7 +228,7 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
|
||||
selectedPoints.BindValueChanged(points =>
|
||||
{
|
||||
ControlPoint.Value = points.NewValue?.OfType<T>().Where(p => !p.AutoGenerated).FirstOrDefault();
|
||||
ControlPoint.Value = points.NewValue?.OfType<T>().FirstOrDefault();
|
||||
|
||||
checkbox.Current.Value = ControlPoint.Value != null;
|
||||
}, true);
|
||||
|
Reference in New Issue
Block a user