From ea7f5433ac4728a7e00c68b151d1cf2f4d965150 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) --- .../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 0696ae9d3f..62b3b19e38 100644 --- a/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Widgets/ChatBox.xaml.cs @@ -16,9 +16,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;