1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 03:02:53 +08:00

Fix ranked status dropdown expanding below the panels

This commit is contained in:
DrabWeb 2017-05-19 18:54:47 -03:00
parent 2f10b72cb2
commit 649fc8362b

View File

@ -2,6 +2,7 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using System.Linq;
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
@ -81,7 +82,7 @@ namespace osu.Game.Overlays
Padding = new MarginPadding { Top = Header.HEIGHT },
Children = new Drawable[]
{
new FillFlowContainer
new ContentFlow
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
@ -138,5 +139,16 @@ namespace osu.Game.Overlays
filter.Search.HoldFocus = false;
}
private class ContentFlow : FillFlowContainer<Drawable>
{
protected override IComparer<Drawable> DepthComparer => new ReverseCreationOrderDepthComparer();
protected override IEnumerable<Drawable> FlowingChildren => base.FlowingChildren.Reverse();
public ContentFlow()
{
Direction = FillDirection.Vertical;
}
}
}
}