Allow different sizing modes for OverlinedDisplay

This commit is contained in:
smoogipoo
2020-02-19 17:34:47 +09:00
parent e3d37b808d
commit 380d200b46
2 changed files with 47 additions and 15 deletions

View File

@ -114,7 +114,7 @@ namespace osu.Game.Screens.Multi.Match
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Right = 5 },
Child = new OverlinedParticipants()
Child = new OverlinedParticipants { RelativeSizeAxes = Axes.Both }
},
new Container
{
@ -122,6 +122,7 @@ namespace osu.Game.Screens.Multi.Match
Padding = new MarginPadding { Horizontal = 5 },
Child = new OverlinedPlaylist(true) // Temporarily always allow selection
{
RelativeSizeAxes = Axes.Both,
SelectedItem = { BindTarget = SelectedItem }
}
},