mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
CI fixes
This commit is contained in:
@ -40,7 +40,7 @@ namespace osu.Game.Tests.Visual.Online
|
|||||||
|
|
||||||
AddStep("four usernames", () => user.Value = new User
|
AddStep("four usernames", () => user.Value = new User
|
||||||
{
|
{
|
||||||
PreviousUsernames = new[] { "ihavenoidea", "howcani", "makethistext" , "anylonger" },
|
PreviousUsernames = new[] { "ihavenoidea", "howcani", "makethistext", "anylonger" },
|
||||||
});
|
});
|
||||||
|
|
||||||
AddStep("no username", () => user.Value = new User
|
AddStep("no username", () => user.Value = new User
|
||||||
|
@ -25,11 +25,12 @@ namespace osu.Game.Overlays.Profile.Header
|
|||||||
|
|
||||||
public readonly Bindable<User> User = new Bindable<User>();
|
public readonly Bindable<User> User = new Bindable<User>();
|
||||||
|
|
||||||
private readonly HoverIconContainer hoverIcon;
|
|
||||||
private readonly ContentContainer contentContainer;
|
private readonly ContentContainer contentContainer;
|
||||||
|
|
||||||
public PreviousUsernamesContainer()
|
public PreviousUsernamesContainer()
|
||||||
{
|
{
|
||||||
|
HoverIconContainer hoverIcon;
|
||||||
|
|
||||||
AutoSizeAxes = Axes.Y;
|
AutoSizeAxes = Axes.Y;
|
||||||
Width = width;
|
Width = width;
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
@ -56,7 +57,7 @@ namespace osu.Game.Overlays.Profile.Header
|
|||||||
|
|
||||||
if (usernames.Any())
|
if (usernames.Any())
|
||||||
{
|
{
|
||||||
var amount = usernames.Count();
|
var amount = usernames.Length;
|
||||||
|
|
||||||
for (int i = 0; i < amount; i++)
|
for (int i = 0; i < amount; i++)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user