1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:07:23 +08:00

adjusted the margin values

This commit is contained in:
Viktor Rosvall 2019-12-29 08:57:14 +01:00
parent b3d32710df
commit bf463fe5e0
2 changed files with 8 additions and 0 deletions

View File

@ -45,6 +45,13 @@ namespace osu.Game.Tests.Visual.UserInterface
AddStep(@"Add multiple Mods", () => changeMods(mutlipleIncrementMods));
AddAssert(@"Check multiple mod multiplier", () => assertModsMultiplier(mutlipleIncrementMods));
}
[Test]
public void Temporary()
{
var hiddenMod = new Mod[] { new OsuModRelax() };
AddStep(@"Add Hidden", () => changeMods(hiddenMod));
}
[Test]
public void TestDecrementMultiplier()

View File

@ -54,6 +54,7 @@ namespace osu.Game.Screens.Select
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(weight: FontWeight.Bold),
Margin = new MarginPadding { Right = 6 }
}
},
AutoSizeAxes = Axes.Both,