mirror of
https://github.com/ppy/osu.git
synced 2025-02-22 01:23:24 +08:00
CI fixes
This commit is contained in:
parent
ec3c92fc3c
commit
e22eb1f205
@ -256,7 +256,9 @@ namespace osu.Game.Overlays.Settings.Sections.General
|
|||||||
{
|
{
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
(Header as UserDropdownHeader).StatusColour = value;
|
var h = Header as UserDropdownHeader;
|
||||||
|
if (h == null) return;
|
||||||
|
h.StatusColour = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -268,10 +270,9 @@ namespace osu.Game.Overlays.Settings.Sections.General
|
|||||||
|
|
||||||
private class UserDropdownHeader : OsuDropdownHeader
|
private class UserDropdownHeader : OsuDropdownHeader
|
||||||
{
|
{
|
||||||
public static readonly float LABEL_LEFT_MARGIN = 20;
|
public const float LABEL_LEFT_MARGIN = 20;
|
||||||
|
|
||||||
protected readonly TextAwesome statusIcon;
|
|
||||||
|
|
||||||
|
private readonly TextAwesome statusIcon;
|
||||||
public Color4 StatusColour
|
public Color4 StatusColour
|
||||||
{
|
{
|
||||||
set
|
set
|
||||||
|
Loading…
Reference in New Issue
Block a user