mirror of
https://github.com/ppy/osu.git
synced 2025-02-11 02:13:11 +08:00
Style changes (removing newline from before second constructor parameter)
This commit is contained in:
parent
d6f532171b
commit
2cc2323791
@ -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,
|
||||||
|
@ -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,
|
||||||
});
|
});
|
||||||
|
@ -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,
|
||||||
};
|
};
|
||||||
|
@ -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),
|
||||||
|
@ -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)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user