1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 05:02:55 +08:00

Scroll to bottom.

This commit is contained in:
Dean Herbert 2017-02-19 18:07:35 +09:00
parent aac4ba2baa
commit cde660a8ef

View File

@ -17,6 +17,7 @@ namespace osu.Game.Online.Chat.Drawables
{
private readonly Channel channel;
private FlowContainer flow;
private ScrollContainer scroll;
public DrawableChannel(Channel channel)
{
@ -36,7 +37,7 @@ namespace osu.Game.Online.Chat.Drawables
Anchor = Anchor.Centre,
Origin = Anchor.Centre
},
new ScrollContainer
scroll = new ScrollContainer
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
@ -77,6 +78,8 @@ namespace osu.Game.Online.Chat.Drawables
while (flow.Children.Count() > Channel.MAX_HISTORY)
flow.Remove(flow.Children.First());
scroll.ScrollTo(flow.DrawHeight, false);
}
}
}