From f6cebccbb22955f2bc2e78f962c9f84456c9444f Mon Sep 17 00:00:00 2001 From: Nikolai Korolev Date: Mon, 25 Nov 2024 11:53:12 +0000 Subject: [PATCH] Fix RA0003 warning for ChatBox (#33531) (cherry picked from commit ea7f5433ac4728a7e00c68b151d1cf2f4d965150) --- .../UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs index b5f78f37b1..7d7ecc7b4a 100644 --- a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs @@ -20,9 +20,8 @@ using static Robust.Client.UserInterface.Controls.LineEdit; namespace Content.Client.UserInterface.Systems.Chat.Widgets; [GenerateTypedNameReferences] -#pragma warning disable RA0003 +[Virtual] public partial class ChatBox : UIWidget -#pragma warning restore RA0003 { private readonly ChatUIController _controller; private readonly IEntityManager _entManager;