1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 17:42:54 +08:00

Split long MarginPadding onto multiple lines.

This commit is contained in:
DrabWeb 2017-06-24 18:37:28 -03:00
parent 68915d79a6
commit 091d786d47

View File

@ -97,7 +97,13 @@ namespace osu.Game.Screens.Multiplayer
new Container new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = content_padding, Bottom = content_padding, Left = side_strip_width + cover_width + content_padding, Right = content_padding }, Padding = new MarginPadding
{
Top = content_padding,
Bottom = content_padding,
Left = side_strip_width + cover_width + content_padding,
Right = content_padding,
},
Children = new Drawable[] Children = new Drawable[]
{ {
new FillFlowContainer new FillFlowContainer