From ce9c8785d6c8fae9f48f7152721d86bcb48d115d Mon Sep 17 00:00:00 2001 From: moneyl <8206401+Moneyl@users.noreply.github.com> Date: Fri, 24 May 2019 18:24:07 -0400 Subject: [PATCH] Add window title and breaker label to ApcBoundUserInterface --- .../GameObjects/Components/Power/ApcBoundUserInterface.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Client/GameObjects/Components/Power/ApcBoundUserInterface.cs b/Content.Client/GameObjects/Components/Power/ApcBoundUserInterface.cs index 06f74127a2..9b4aa21396 100644 --- a/Content.Client/GameObjects/Components/Power/ApcBoundUserInterface.cs +++ b/Content.Client/GameObjects/Components/Power/ApcBoundUserInterface.cs @@ -85,6 +85,7 @@ namespace Content.Client.GameObjects.Components.Power public ApcWindow(IDisplayManager displayMan) : base(displayMan) { + Title = "APC"; var rows = new VBoxContainer("Rows"); var statusHeader = new Label("StatusHeader") { Text = "Power Status: " }; @@ -92,7 +93,7 @@ namespace Content.Client.GameObjects.Components.Power var breaker = new HBoxContainer("Breaker"); var breakerLabel = new Label("Label") { Text = "Main Breaker: " }; - BreakerButton = new CheckButton {Name = "Breaker"}; + BreakerButton = new CheckButton {Name = "Breaker", Text = "Toggle"}; breaker.AddChild(breakerLabel); breaker.AddChild(BreakerButton); rows.AddChild(breaker);