Fix AutoSize references.

This commit is contained in:
Dean Herbert
2016-10-22 17:50:42 +09:00
parent e26a9de5b5
commit cdef75c98b
10 changed files with 34 additions and 14 deletions

View File

@ -15,7 +15,7 @@ using System.Threading.Tasks;
namespace osu.Game.Graphics.UserInterface
{
public abstract class RollingCounter<T> : AutoSizeContainer
public abstract class RollingCounter<T> : Container
{
/// <summary>
/// Type of the Transform to use.
@ -116,6 +116,7 @@ namespace osu.Game.Graphics.UserInterface
};
TextSize = 40;
AutoSizeAxes = Axes.Both;
}
public override void Load(BaseGame game)