1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 21:33:51 +08:00

Fix incorrect footer button size

This commit is contained in:
smoogipoo 2020-02-14 20:44:41 +09:00
parent b762e5e8a5
commit 2ea8c47c83

View File

@ -5,11 +5,9 @@ using System;
using System.Linq; using System.Linq;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Bindables; using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Beatmaps; using osu.Game.Beatmaps;
using osu.Game.Graphics.UserInterface; using osu.Game.Graphics.UserInterface;
using osu.Game.Online.Multiplayer; using osu.Game.Online.Multiplayer;
using osuTK;
namespace osu.Game.Screens.Multi.Match.Components namespace osu.Game.Screens.Multi.Match.Components
{ {
@ -30,9 +28,6 @@ namespace osu.Game.Screens.Multi.Match.Components
public ReadyButton() public ReadyButton()
{ {
RelativeSizeAxes = Axes.Y;
Size = new Vector2(200, 1);
Text = "Start"; Text = "Start";
} }