]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix default chat alert being off-screen (#14868)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Sun, 26 Mar 2023 13:16:27 +0000 (00:16 +1100)
committerGitHub <noreply@github.com>
Sun, 26 Mar 2023 13:16:27 +0000 (08:16 -0500)
Content.Client/UserInterface/Screens/DefaultGameScreen.xaml.cs

index 28329706040d8856876764ca0e592acdd0d5e83c..ea69597ce2015e8135885ffcc6384601c9c9cac3 100644 (file)
@@ -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);
     }
 }