1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-10 13:03:01 +08:00

Style changes (removing newline from before second constructor parameter)

This commit is contained in:
FreezyLemon 2017-11-23 09:12:23 +01:00
parent d6f532171b
commit 2cc2323791
5 changed files with 5 additions and 11 deletions

View File

@ -48,9 +48,7 @@ namespace osu.Game.Beatmaps.Drawables
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
OnLoadComplete = d => d.FadeInFromZero(400, Easing.Out), OnLoadComplete = d => d.FadeInFromZero(400, Easing.Out),
}, }, 300),
300
),
new FillFlowContainer new FillFlowContainer
{ {
Direction = FillDirection.Vertical, Direction = FillDirection.Vertical,

View File

@ -60,8 +60,7 @@ namespace osu.Game.Overlays.BeatmapSet
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fill, FillMode = FillMode.Fill,
OnLoadComplete = d => d.FadeInFromZero(400, Easing.Out), OnLoadComplete = d => d.FadeInFromZero(400, Easing.Out),
}, }, 300)
300)
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
}); });

View File

@ -231,8 +231,7 @@ namespace osu.Game.Overlays.Direct
d.FadeInFromZero(400, Easing.Out); d.FadeInFromZero(400, Easing.Out);
BlackBackground.Delay(400).FadeOut(); BlackBackground.Delay(400).FadeOut();
}, },
}, }, 300)
300)
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
}; };

View File

@ -112,8 +112,7 @@ namespace osu.Game.Screens.Select.Leaderboards
Radius = 1, Radius = 1,
Colour = Color4.Black.Opacity(0.2f), Colour = Color4.Black.Opacity(0.2f),
}, },
}, }, 500)
500)
{ {
RelativeSizeAxes = Axes.None, RelativeSizeAxes = Axes.None,
Size = new Vector2(HEIGHT - edge_margin * 2, HEIGHT - edge_margin * 2), Size = new Vector2(HEIGHT - edge_margin * 2, HEIGHT - edge_margin * 2),

View File

@ -45,8 +45,7 @@ namespace osu.Game.Users
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
OnLoadComplete = d => d.FadeInFromZero(200), OnLoadComplete = d => d.FadeInFromZero(200),
}, }, 500)
500)
); );
} }
} }