1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 15:07:44 +08:00
This commit is contained in:
EVAST9919 2017-05-02 22:46:18 +03:00
parent 7e1efcc20b
commit 37c3133981
2 changed files with 4 additions and 9 deletions

View File

@ -69,7 +69,7 @@ namespace osu.Game.Rulesets.UI
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
AutoSizeAxes = Axes.Both,
Position = new Vector2(0, 30),
Position = new Vector2(0, 25),
};
[BackgroundDependencyLoader]

View File

@ -20,12 +20,7 @@ namespace osu.Game.Screens.Play
public bool ShowMods
{
get { return showMods; }
set
{
if (showMods == value) return;
showMods = value;
}
set { showMods = value; }
}
public ModsContainer()
@ -34,8 +29,8 @@ namespace osu.Game.Screens.Play
{
iconsContainer = new FillFlowContainer<ModIcon>
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
},