Adjust scale and CI fixes

This commit is contained in:
EVAST9919
2017-05-04 17:59:01 +03:00
parent 66c858030a
commit 95f6c999bd
3 changed files with 10 additions and 19 deletions

View File

@ -14,8 +14,6 @@ namespace osu.Game.Screens.Play
{
public class ModsContainer : Container
{
private readonly FillFlowContainer<ModIcon> iconsContainer;
public readonly Bindable<IEnumerable<Mod>> Mods = new Bindable<IEnumerable<Mod>>();
private bool showMods;
@ -37,6 +35,8 @@ namespace osu.Game.Screens.Play
public ModsContainer()
{
FillFlowContainer<ModIcon> iconsContainer;
Children = new Drawable[]
{
iconsContainer = new FillFlowContainer<ModIcon>
@ -65,7 +65,7 @@ namespace osu.Game.Screens.Play
iconsContainer.Add(new ModIcon(mod)
{
AutoSizeAxes = Axes.Both,
Scale = new Vector2(0.7f),
Scale = new Vector2(0.65f),
});
}
};