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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user