mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 07:42:52 +08:00
30 lines
887 B
C#
30 lines
887 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Graphics.UserInterfaceV2
|
|
{
|
|
internal class OsuDirectorySelectorHiddenToggle : OsuCheckbox
|
|
{
|
|
public OsuDirectorySelectorHiddenToggle()
|
|
{
|
|
RelativeSizeAxes = Axes.None;
|
|
AutoSizeAxes = Axes.Both;
|
|
Anchor = Anchor.CentreLeft;
|
|
Origin = Anchor.CentreLeft;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Nub.AccentColour = colours.GreySeaFoamLighter;
|
|
Nub.GlowingAccentColour = Color4.White;
|
|
Nub.GlowColour = Color4.White;
|
|
}
|
|
}
|
|
}
|