mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 14:53:01 +08:00
Add minimum size rules to fix overlap at non-wide resolutions
This commit is contained in:
parent
19d61c1255
commit
e2e157b455
@ -99,6 +99,12 @@ namespace osu.Game.Screens.Multi.Match
|
|||||||
Padding = new MarginPadding { Top = 65 },
|
Padding = new MarginPadding { Top = 65 },
|
||||||
Child = new GridContainer
|
Child = new GridContainer
|
||||||
{
|
{
|
||||||
|
ColumnDimensions = new[]
|
||||||
|
{
|
||||||
|
new Dimension(minSize: 160),
|
||||||
|
new Dimension(minSize: 360),
|
||||||
|
new Dimension(minSize: 400),
|
||||||
|
},
|
||||||
RelativeSizeAxes = Axes.Both,
|
RelativeSizeAxes = Axes.Both,
|
||||||
Content = new[]
|
Content = new[]
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user