mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 13:35:09 +00:00
Fix 01d27a4
(sorry I cherry-picked from wrong branch)
This commit is contained in:
parent
01d27a4acd
commit
31b967f098
1 changed files with 1 additions and 1 deletions
|
@ -4016,7 +4016,7 @@ ImVec2 ImFont::CalcTextSizeA(float size, float max_width, float wrap_width, cons
|
|||
continue;
|
||||
}
|
||||
|
||||
const float char_width = ImFontGetCharAdvanceX(this, c);
|
||||
const float char_width = ImFontGetCharAdvanceX(this, c) * scale;
|
||||
if (line_width + char_width >= max_width)
|
||||
{
|
||||
s = prev_s;
|
||||
|
|
Loading…
Add table
Reference in a new issue