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

Give leaderboard and chat more breathing room

This commit is contained in:
Dean Herbert 2018-12-26 19:20:54 +09:00
parent 0cefd4b21d
commit 532a970c0f

View File

@ -73,8 +73,20 @@ namespace osu.Game.Screens.Multi.Match
{
new Drawable[]
{
leaderboard = new MatchLeaderboard(room) { RelativeSizeAxes = Axes.Both },
chat = new MatchChatDisplay(room) { RelativeSizeAxes = Axes.Both }
leaderboard = new MatchLeaderboard(room)
{
Padding = new MarginPadding(10),
RelativeSizeAxes = Axes.Both
},
new Container
{
Padding = new MarginPadding(10),
RelativeSizeAxes = Axes.Both,
Child = chat = new MatchChatDisplay(room)
{
RelativeSizeAxes = Axes.Both
}
},
},
},
}