From 14d538997e7d09cb35b09e99e24cd485e0e8b90d Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 19 Jul 2019 11:01:32 +0200 Subject: [PATCH] Remove some redundant declarations from ChatBox.cs --- Content.Client/Chat/ChatBox.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Content.Client/Chat/ChatBox.cs b/Content.Client/Chat/ChatBox.cs index f1c0f5faf5..fc86a3c3fb 100644 --- a/Content.Client/Chat/ChatBox.cs +++ b/Content.Client/Chat/ChatBox.cs @@ -92,31 +92,22 @@ namespace Content.Client.Chat { Text = localize.GetString("All"), Name = "ALL", - TextAlign = Button.AlignMode.Left, SizeFlagsHorizontal = SizeFlags.ShrinkEnd | SizeFlags.Expand, - SizeFlagsStretchRatio = 1, ToggleMode = true, - Pressed = true }; LocalButton = new Button { Text = localize.GetString("Local"), Name = "Local", - TextAlign = Button.AlignMode.Left, - SizeFlagsStretchRatio = 1, ToggleMode = true, - Pressed = true }; OOCButton = new Button { Text = localize.GetString("OOC"), Name = "OOC", - TextAlign = Button.AlignMode.Left, - SizeFlagsStretchRatio = 1, ToggleMode = true, - Pressed = true }; AllButton.OnToggled += OnFilterToggled;