mirror of
https://github.com/ppy/osu
synced 2025-01-07 06:40:05 +00:00
Merge pull request #11770 from Joehuu/fix-extra-mod-settings-overflowing
Fix extra mod settings overflowing from screen in multi room
This commit is contained in:
commit
1a200148e5
@ -77,7 +77,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Padding = new MarginPadding
|
||||
{
|
||||
Horizontal = 105,
|
||||
Horizontal = HORIZONTAL_OVERFLOW_PADDING + 55,
|
||||
Vertical = 20
|
||||
},
|
||||
Child = new GridContainer
|
||||
@ -237,6 +237,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
|
||||
Origin = Anchor.BottomLeft,
|
||||
RelativeSizeAxes = Axes.Both,
|
||||
Height = 0.5f,
|
||||
Padding = new MarginPadding { Horizontal = HORIZONTAL_OVERFLOW_PADDING },
|
||||
Child = userModsSelectOverlay = new UserModSelectOverlay
|
||||
{
|
||||
SelectedMods = { BindTarget = UserMods },
|
||||
|
Loading…
Reference in New Issue
Block a user