1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Use dangerous colour for "apply new" button

This commit is contained in:
Bartłomiej Dach 2023-10-13 09:08:13 +02:00
parent 37411f923e
commit 61b8d035fe
No known key found for this signature in database

View File

@ -37,6 +37,9 @@ namespace osu.Game.Overlays.Settings.Sections.Input
[Resolved]
private RealmAccess realm { get; set; } = null!;
[Resolved]
private OsuColour colours { get; set; } = null!;
[BackgroundDependencyLoader]
private void load() => recreateDisplay();
@ -84,6 +87,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
applyNewButton = new HoverableRoundedButton
{
Text = InputSettingsStrings.ApplyNew,
BackgroundColour = colours.Pink3,
RelativeSizeAxes = Axes.X,
Width = 0.48f,
Anchor = Anchor.CentreRight,