1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 01:43:15 +08:00

make it work again after merge

This commit is contained in:
Jorolf 2017-08-09 01:43:52 +02:00
parent 7d7cfe5d92
commit 9f005488f7
4 changed files with 3 additions and 7 deletions

View File

@ -109,6 +109,7 @@
<Compile Include="Visual\TestCaseTwoLayerButton.cs" />
<Compile Include="Visual\TestCaseUserPanel.cs" />
<Compile Include="Visual\TestCaseUserProfile.cs" />
<Compile Include="Visual\TestCaseUserRanks.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\osu-framework\osu.Framework.Desktop\osu.Framework.Desktop.csproj">

View File

@ -186,7 +186,6 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Tests\TestCaseUserRanks.cs" />
<Compile Include="VisualTestGame.cs" />
</ItemGroup>
<ItemGroup />

View File

@ -156,25 +156,21 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks
Children = new[]
{
new TextAwesome
new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Icon = FontAwesome.fa_osu_mod_bg,
Colour = colour,
Shadow = true,
TextSize = 30,
UseFullGlyphHeight = false,
},
new TextAwesome
new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
Icon = icon,
Colour = OsuColour.Gray(84),
TextSize = 18,
Position = new Vector2(0f, 2f),
UseFullGlyphHeight = false,
},
};
}