mirror of
https://github.com/ppy/osu.git
synced 2025-03-04 04:42:55 +08:00
CI fixes
This commit is contained in:
parent
eec813ad65
commit
a21343da23
@ -1,11 +1,8 @@
|
|||||||
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
using osu.Framework.Allocation;
|
|
||||||
using osu.Framework.Configuration;
|
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Testing;
|
using osu.Framework.Testing;
|
||||||
using osu.Game.Overlays;
|
|
||||||
using osu.Game.Screens.Play.Options;
|
using osu.Game.Screens.Play.Options;
|
||||||
|
|
||||||
namespace osu.Desktop.VisualTests.Tests
|
namespace osu.Desktop.VisualTests.Tests
|
||||||
|
@ -11,8 +11,10 @@ using osu.Framework.Graphics.UserInterface;
|
|||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
|
|
||||||
public class CollectionsDropdown<T> : OsuDropdown<T>
|
namespace osu.Game.Overlays.Music
|
||||||
{
|
{
|
||||||
|
public class CollectionsDropdown<T> : OsuDropdown<T>
|
||||||
|
{
|
||||||
protected override DropdownHeader CreateHeader() => new CollectionsHeader { AccentColour = AccentColour };
|
protected override DropdownHeader CreateHeader() => new CollectionsHeader { AccentColour = AccentColour };
|
||||||
protected override Menu CreateMenu() => new CollectionsMenu();
|
protected override Menu CreateMenu() => new CollectionsMenu();
|
||||||
|
|
||||||
@ -67,4 +69,5 @@ public class CollectionsDropdown<T> : OsuDropdown<T>
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Game.Configuration;
|
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
using osu.Game.Overlays.Music;
|
using osu.Game.Overlays.Music;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
@ -19,10 +19,9 @@ namespace osu.Game.Screens.Play.Options
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract string Title { get; }
|
public abstract string Title { get; }
|
||||||
|
|
||||||
private Container header;
|
private readonly FillFlowContainer content;
|
||||||
private FillFlowContainer content;
|
|
||||||
|
|
||||||
public OptionContainer()
|
protected OptionContainer()
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Y;
|
AutoSizeAxes = Axes.Y;
|
||||||
Width = 250;
|
Width = 250;
|
||||||
@ -47,7 +46,7 @@ namespace osu.Game.Screens.Play.Options
|
|||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
header = new Container
|
new Container
|
||||||
{
|
{
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
Height = 30,
|
Height = 30,
|
||||||
|
Loading…
Reference in New Issue
Block a user