From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 26 Mar 2023 13:16:27 +0000 (+1100) Subject: Fix default chat alert being off-screen (#14868) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=93fd38cf689e881ffdc9138656372aee5448f0ef;p=space-station-14.git Fix default chat alert being off-screen (#14868) --- 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); } }