1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Fonts: reworked text ellipsis logic to ensure a "..." is always displayed instead of a single character. (#7024)

Requires 97d85338e8 and e4a865177e
This commit is contained in:
ocornut 2025-04-16 20:30:00 +02:00
parent 97d85338e8
commit 69d572bb10
2 changed files with 2 additions and 6 deletions

View file

@ -84,6 +84,8 @@ Other changes:
EndPopup() call. (#1651, #8499)
- Error Handling: added better error report and recovery when calling EndFrame()
or Render() without NewFrame(). Was previously only an assert.
- Fonts: reworked text ellipsis logic to ensure a "..." is always displayed instead
of a single character. (#7024)
- Fonts: word-wrapping code handle ideographic comma & full stop (U+3001, U+3002). (#8540)
- Fonts: fixed CalcWordWrapPositionA() fallback when width is too small to wrap:
would use a +1 offset instead of advancing to the next UTF-8 codepoint. (#8540)