1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:52:53 +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[] new Drawable[]
{ {
leaderboard = new MatchLeaderboard(room) { RelativeSizeAxes = Axes.Both }, leaderboard = new MatchLeaderboard(room)
chat = new MatchChatDisplay(room) { RelativeSizeAxes = Axes.Both } {
Padding = new MarginPadding(10),
RelativeSizeAxes = Axes.Both
},
new Container
{
Padding = new MarginPadding(10),
RelativeSizeAxes = Axes.Both,
Child = chat = new MatchChatDisplay(room)
{
RelativeSizeAxes = Axes.Both
}
},
}, },
}, },
} }