1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

osu!-side changes in-line with framework layout changes

This commit is contained in:
smoogipoo 2018-03-06 14:12:37 +09:00
parent a6460832f4
commit 148551afa2
2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ namespace osu.Game.Graphics.Containers
{
protected override int Compare(Drawable x, Drawable y) => CompareReverseChildID(x, y);
protected override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
public override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
}
}

View File

@ -22,7 +22,7 @@ namespace osu.Game.Screens.Menu
protected override int Compare(Drawable x, Drawable y) => CompareReverseChildID(x, y);
protected override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
public override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
public override Anchor Origin => Anchor.Custom;