mirror of
https://github.com/ppy/osu.git
synced 2026-05-21 02:59:53 +08:00
Fix vertical centering of button
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user