mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:07:44 +08:00
Fixes
This commit is contained in:
parent
7e1efcc20b
commit
37c3133981
@ -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]
|
||||
|
@ -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,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user