From 93fd38cf689e881ffdc9138656372aee5448f0ef Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 27 Mar 2023 00:16:27 +1100 Subject: [PATCH] Fix default chat alert being off-screen (#14868) --- Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs b/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs index 2832970604..ea69597ce2 100644 --- a/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs +++ b/Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs @@ -48,6 +48,6 @@ public sealed partial class DefaultGameScreen : InGameScreen { SetMarginBottom(Chat, size.X); SetMarginLeft(Chat, size.Y); - SetMarginTop(Alerts, Size.X); + SetMarginTop(Alerts, size.X); } } -- 2.51.2