1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +08:00

Fix failing test due to incorrect sizing specification

This commit is contained in:
Dean Herbert 2022-04-01 10:53:14 +09:00
parent 1c7b259f8e
commit 058350dfd8

View File

@ -64,12 +64,11 @@ namespace osu.Game.Tests.Visual.UserInterface
AddStep("create button", () =>
{
Child = button = new ShearedToggleButton
Child = button = new ShearedToggleButton(200)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Text = "Toggle me",
Width = 200
};
});