From 42a41036adbcd0796d76e3c7468b00be8846c115 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 19 Jul 2019 11:00:18 +0200 Subject: [PATCH] Great I managed to forget about the local button too. --- Content.Client/Chat/ChatBox.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/Chat/ChatBox.cs b/Content.Client/Chat/ChatBox.cs index cd8f40650f..f1c0f5faf5 100644 --- a/Content.Client/Chat/ChatBox.cs +++ b/Content.Client/Chat/ChatBox.cs @@ -120,9 +120,11 @@ namespace Content.Client.Chat }; AllButton.OnToggled += OnFilterToggled; + LocalButton.OnToggled += OnFilterToggled; OOCButton.OnToggled += OnFilterToggled; hBox.AddChild(AllButton); + hBox.AddChild(LocalButton); hBox.AddChild(OOCButton); AddChild(outerVBox);