1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +08:00

Fix min width not really working as intended

This commit is contained in:
Bartłomiej Dach 2023-10-12 13:05:50 +02:00
parent 5d637520e7
commit 9468371556
No known key found for this signature in database

View File

@ -185,7 +185,7 @@ namespace osu.Game.Overlays.Settings.Sections.Input
ColumnDimensions = new[]
{
new Dimension(),
new Dimension(GridSizeMode.AutoSize, minSize: 80),
new Dimension(GridSizeMode.AutoSize),
},
Content = new[]
{
@ -198,20 +198,20 @@ namespace osu.Game.Overlays.Settings.Sections.Input
},
new Container
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Both,
CornerRadius = 5,
Masking = true,
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
X = -5,
Children = new Drawable[]
Children = new[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = colourProvider.Background6
},
Empty().With(d => d.Width = 80), // poor man's min-width
newBindingText = new OsuSpriteText
{
Font = OsuFont.Numeric.With(size: 10),