1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-17 22:17:25 +08:00

Fix newlines/spaces

This commit is contained in:
Naxess 2021-03-22 17:32:40 +01:00
parent 15af57de95
commit 323b875cea
2 changed files with 4 additions and 2 deletions

View File

@ -304,8 +304,8 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
addMovementStep(new Vector2(61.382935f, 6.423767f));
addClickStep(MouseButton.Left);
addMovementStep(new Vector2(217.69522f, 22.84021f)); // Should convert to bezier
addMovementStep(new Vector2(210.0f, 30.0f)); // Should convert back to perfect
addMovementStep(new Vector2(217.69522f, 22.84021f)); // Should convert to bezier
addMovementStep(new Vector2(210.0f, 30.0f)); // Should convert back to perfect
addClickStep(MouseButton.Right);
assertPlaced(true);

View File

@ -58,6 +58,7 @@ namespace osu.Game.Rulesets.Objects
c.Changed += invalidate;
c.Changed += updatePathTypes;
}
break;
case NotifyCollectionChangedAction.Reset:
@ -67,6 +68,7 @@ namespace osu.Game.Rulesets.Objects
c.Changed -= invalidate;
c.Changed -= updatePathTypes;
}
break;
}