clean up code stuff

This commit is contained in:
OliBomby 2023-04-25 19:06:29 +02:00
parent 755ad25dbe
commit e4b64bdc3e
3 changed files with 4 additions and 7 deletions

View File

@ -14,7 +14,6 @@ using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types; using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Mania.Objects; using osu.Game.Rulesets.Mania.Objects;
using osu.Game.Beatmaps.ControlPoints; using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Beatmaps.Formats;
using osu.Game.Beatmaps.Legacy; using osu.Game.Beatmaps.Legacy;
using osu.Game.Utils; using osu.Game.Utils;

View File

@ -8,7 +8,6 @@ using osu.Game.Rulesets.Objects.Types;
using System.Collections.Generic; using System.Collections.Generic;
using osu.Game.Rulesets.Objects; using osu.Game.Rulesets.Objects;
using System.Linq; using System.Linq;
using System.Text.Json.Serialization;
using System.Threading; using System.Threading;
using Newtonsoft.Json; using Newtonsoft.Json;
using osu.Framework.Bindables; using osu.Framework.Bindables;

View File

@ -120,11 +120,10 @@ namespace osu.Game.Screens.Edit.Compose.Components.Timeline
if (item is IHasSliderVelocity) if (item is IHasSliderVelocity)
{ {
AddInternal(new DifficultyPointPiece(Item) AddInternal(new DifficultyPointPiece(Item)
{ {
Anchor = Anchor.TopLeft, Anchor = Anchor.TopLeft,
Origin = Anchor.BottomCentre Origin = Anchor.BottomCentre
} });
);
} }
} }