From 37c31339819849a870bd9e449aa8db021d049357 Mon Sep 17 00:00:00 2001 From: EVAST9919 Date: Tue, 2 May 2017 22:46:18 +0300 Subject: [PATCH] Fixes --- osu.Game/Rulesets/UI/StandardHudOverlay.cs | 2 +- osu.Game/Screens/Play/ModsContainer.cs | 11 +++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/osu.Game/Rulesets/UI/StandardHudOverlay.cs b/osu.Game/Rulesets/UI/StandardHudOverlay.cs index a51a1ba434..8d4496ad93 100644 --- a/osu.Game/Rulesets/UI/StandardHudOverlay.cs +++ b/osu.Game/Rulesets/UI/StandardHudOverlay.cs @@ -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] diff --git a/osu.Game/Screens/Play/ModsContainer.cs b/osu.Game/Screens/Play/ModsContainer.cs index 6ee7292dae..514d174212 100644 --- a/osu.Game/Screens/Play/ModsContainer.cs +++ b/osu.Game/Screens/Play/ModsContainer.cs @@ -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 { - Anchor = Anchor.TopRight, - Origin = Anchor.TopRight, + Anchor = Anchor.TopCentre, + Origin = Anchor.TopCentre, AutoSizeAxes = Axes.Both, Direction = FillDirection.Horizontal, },