Tweak play button

This commit is contained in:
Drew DeVault 2016-10-19 16:41:34 -04:00
parent 4dcdc8638e
commit 51791bba7f
1 changed files with 6 additions and 5 deletions

View File

@ -124,11 +124,12 @@ public PlaySongSelect()
new Button
{
Text = "Play",
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
Action = () =>
{
},
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativePositionAxes = Axes.Both,
Position = Vector2.Zero,
Colour = new Color4(238, 51, 153, 255),
Action = () => Console.WriteLine("Clicked!"),
}
};
}