Update Button references

This commit is contained in:
ShadowCommander
2020-02-14 04:17:07 -08:00
parent 5f26944df9
commit 718bf0edc3
5 changed files with 13 additions and 13 deletions

View File

@@ -91,14 +91,14 @@ namespace Content.Client.Construction
BuildButton = new Button
{
SizeFlagsHorizontal = SizeFlags.FillExpand,
TextAlign = Button.AlignMode.Center,
TextAlign = Label.AlignMode.Center,
Text = "Build!",
Disabled = true,
ToggleMode = false
};
EraseButton = new Button
{
TextAlign = Button.AlignMode.Center, Text = "Clear Ghosts", ToggleMode = true
TextAlign = Label.AlignMode.Center, Text = "Clear Ghosts", ToggleMode = true
};
buttonsContainer.AddChild(BuildButton);
buttonsContainer.AddChild(EraseButton);