From b4838129d776f5cb9f7c92de400cc7ffe04d3b07 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 17 Oct 2022 17:33:29 +1300 Subject: [PATCH] Fix chat popup rendering (#11987) --- Content.Client/UserInterface/Systems/Chat/ChatUIController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs index bd565a91f9..cb95ac6cfe 100644 --- a/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs +++ b/Content.Client/UserInterface/Systems/Chat/ChatUIController.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; using Content.Client.Administration.Managers; using Content.Client.Chat; using Content.Client.Chat.Managers; @@ -237,7 +237,7 @@ public sealed class ChatUIController : UIController _speechBubbleRoot.Orphan(); LayoutContainer.SetAnchorPreset(_speechBubbleRoot, LayoutContainer.LayoutPreset.Wide); UIManager.StateRoot.AddChild(_speechBubbleRoot); - _speechBubbleRoot.SetPositionFirst(); + _speechBubbleRoot.SetPositionLast(); } private void OnLocalPlayerChanged(LocalPlayerChangedEventArgs obj)