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