mirror of
https://github.com/ppy/osu
synced 2024-12-13 18:37:04 +00:00
fix CI issues
This commit is contained in:
parent
7f5270b4e1
commit
c2c9095b02
@ -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
|
||||
{
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user