Fix default chat alert being off-screen (#14868)

This commit is contained in:
metalgearsloth 2023-03-27 00:16:27 +11:00 committed by GitHub
parent 2dfdf73aa6
commit 93fd38cf68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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);
}
}