General cleanups

This commit is contained in:
smoogipoo
2019-12-09 16:44:19 +09:00
parent c18f2e6436
commit 53f7c753fb
3 changed files with 4 additions and 3 deletions

View File

@ -99,7 +99,7 @@ namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
private bool deleteSelected()
{
List<PathControlPoint> toRemove = Pieces.Where(p => p.IsSelected.Value).Select(p => p.Index).Select(i => slider.Path.ControlPoints[i]).ToList();
List<PathControlPoint> toRemove = Pieces.Where(p => p.IsSelected.Value).Select(p => slider.Path.ControlPoints[p.Index]).ToList();
// Ensure that there are any points to be deleted
if (toRemove.Count == 0)