1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 22:22:55 +08:00

Extended the width of the ResetSectionButton to be equal to Content.Width. Fixes #14685

This commit is contained in:
Emil Olesen 2021-09-08 22:02:24 +02:00
parent 2c6ee0ebf7
commit 2888623bdb

View File

@ -67,7 +67,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
{ {
Text = InputSettingsStrings.ResetSectionButton; Text = InputSettingsStrings.ResetSectionButton;
RelativeSizeAxes = Axes.X; RelativeSizeAxes = Axes.X;
Width = 0.5f; Width = Content.Width;
Anchor = Anchor.TopCentre; Anchor = Anchor.TopCentre;
Origin = Anchor.TopCentre; Origin = Anchor.TopCentre;
Margin = new MarginPadding { Top = 15 }; Margin = new MarginPadding { Top = 15 };