diff --git a/OpenRA.Mods.Common/Widgets/ChatDisplayWidget.cs b/OpenRA.Mods.Common/Widgets/ChatDisplayWidget.cs index 4309fb9ea3..8eb58ed8e9 100644 --- a/OpenRA.Mods.Common/Widgets/ChatDisplayWidget.cs +++ b/OpenRA.Mods.Common/Widgets/ChatDisplayWidget.cs @@ -57,7 +57,7 @@ namespace OpenRA.Mods.Common.Widgets var textSize = font.Measure(text).Y; var offset = font.TopOffset; - if (chatPos.Y < pos.Y) + if (chatPos.Y - font.TopOffset < pos.Y) break; var textLineHeight = lineHeight;