mirror of
https://github.com/ppy/osu
synced 2025-02-09 06:36:56 +00:00
Fix vertical centering of button
This commit is contained in:
parent
eaf4f6dbb7
commit
da360af15a
@ -64,7 +64,17 @@ namespace osu.Game.Screens.Select.Carousel
|
||||
Spacing = new Vector2(5),
|
||||
Children = new[]
|
||||
{
|
||||
beatmapSet.AllBeatmapsUpToDate ? Empty() : new UpdateRequiredIcon(beatmapSet),
|
||||
beatmapSet.AllBeatmapsUpToDate
|
||||
? Empty()
|
||||
: new Container
|
||||
{
|
||||
AutoSizeAxes = Axes.X,
|
||||
RelativeSizeAxes = Axes.Y,
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new UpdateRequiredIcon(beatmapSet),
|
||||
}
|
||||
},
|
||||
new BeatmapSetOnlineStatusPill
|
||||
{
|
||||
AutoSizeAxes = Axes.Both,
|
||||
|
Loading…
Reference in New Issue
Block a user