1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 11:53:21 +08:00

Fix one remaining FlowContainer.

This commit is contained in:
Dean Herbert 2016-10-22 19:37:27 +09:00
parent 808d5c75fb
commit 3ce93608fb

View File

@ -2,6 +2,7 @@
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
using osu.Framework.Graphics;
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Graphics.Containers;
@ -13,6 +14,7 @@ namespace osu.Game.Graphics.UserInterface
public KeyCounterCollection()
{
Direction = FlowDirection.HorizontalOnly;
AutoSizeAxes = Axes.Both;
}
private List<KeyCounter> counters = new List<KeyCounter>();