fix CI issues

This commit is contained in:
Jorolf 2017-08-09 18:57:55 +02:00
parent 7f5270b4e1
commit c2c9095b02
3 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,7 @@ using osu.Game.Rulesets.Scoring;
using System;
using System.Collections.Generic;
namespace osu.Desktop.VisualTests.Tests
namespace osu.Desktop.Tests.Visual
{
public class TestCaseUserRanks : TestCase
{

View File

@ -12,7 +12,6 @@ using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Framework.Input;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;

View File

@ -159,7 +159,7 @@ namespace osu.Game.Overlays.Profile.Sections
showMoreText.Show();
}
public void ShowMore() => showMoreText.Alpha = Children.Where(d => !d.IsPresent).Where((d, i) => (d.Alpha = (i < 5 ? 1 : 0)) == 0).Any() ? 1 : 0;
public void ShowMore() => showMoreText.Alpha = Children.Where(d => !d.IsPresent).Where((d, i) => (d.Alpha = i < 5 ? 1 : 0) == 0).Any() ? 1 : 0;
}
}
}