1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix: Input text floating outside chat window

This commit is contained in:
Cory Sanin
2023-03-13 10:54:28 -05:00
committed by GitHub
parent 049164c400
commit c9883e1553

View File

@@ -303,5 +303,5 @@ int32_t ChatStringWrappedGetHeight(u8string_view args, int32_t width)
int32_t numLines;
GfxWrapString(FormatStringID(STR_STRING, args), width, FontStyle::Medium, nullptr, &numLines);
const int32_t lineHeight = FontGetLineHeight(FontStyle::Medium);
return lineHeight * numLines;
return lineHeight * (numLines + 1);
}