moved autosize to ctor and whitespace fix

This commit is contained in:
EVAST9919 2017-05-19 16:08:33 +03:00
parent b2b299a8c3
commit 6f0e1fccdb
4 changed files with 25 additions and 25 deletions

View File

@ -19,7 +19,6 @@ namespace osu.Desktop.VisualTests.Tests
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AutoSizeAxes = Axes.Both,
});
}
}

View File

@ -3,6 +3,7 @@
using OpenTK;
using OpenTK.Input;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
@ -32,6 +33,7 @@ namespace osu.Game.Screens.Play.Settings
{
AlwaysPresent = true;
Direction = FillDirection.Vertical;
AutoSizeAxes = Axes.Both;
Spacing = new Vector2(0, 20);
Add(new CollectionSettings());

View File

@ -76,7 +76,6 @@ namespace osu.Game.Screens.Play
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
AutoSizeAxes = Axes.Both,
Margin = new MarginPadding { Top = 100, Right = 10 },
};