mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 09:22:54 +08:00
Reduce mod selection height
This commit is contained in:
parent
e134af82f5
commit
51cb288717
@ -210,10 +210,17 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
|||||||
new Dimension(GridSizeMode.AutoSize),
|
new Dimension(GridSizeMode.AutoSize),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
userModsSelectOverlay = new SoloModSelectOverlay
|
new Container
|
||||||
{
|
{
|
||||||
SelectedMods = { BindTarget = UserMods },
|
Anchor = Anchor.BottomLeft,
|
||||||
IsValidMod = _ => false
|
Origin = Anchor.BottomLeft,
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Height = 0.5f,
|
||||||
|
Child = userModsSelectOverlay = new SoloModSelectOverlay
|
||||||
|
{
|
||||||
|
SelectedMods = { BindTarget = UserMods },
|
||||||
|
IsValidMod = _ => false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
settingsOverlay = new MultiplayerMatchSettingsOverlay
|
settingsOverlay = new MultiplayerMatchSettingsOverlay
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user