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

Align song select components a bit better

This commit is contained in:
Dean Herbert 2022-07-01 14:41:32 +09:00
parent 32139ac13f
commit cb9947b1c9
2 changed files with 7 additions and 4 deletions

View File

@ -29,7 +29,7 @@ namespace osu.Game.Screens.Select
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
const float vertical_offset = 15;
const float vertical_offset = 13;
InternalChildren = new[]
{

View File

@ -155,20 +155,23 @@ namespace osu.Game.Screens.Select
new Container
{
RelativeSizeAxes = Axes.X,
Height = 20,
Height = 40,
Children = new Drawable[]
{
new DifficultyRangeFilterControl
{
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft,
RelativeSizeAxes = Axes.Both,
Width = 0.5f,
Width = 0.48f,
},
collectionDropdown = new CollectionFilterDropdown
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
RelativeSizeAxes = Axes.X,
Width = 0.4f,
Y = 4,
Width = 0.5f,
}
}
},