1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-30 03:10:06 +00:00

InputText: Added ImGuiInputTextCallbackData::ID field.

This commit is contained in:
ocornut 2026-01-21 18:34:28 +01:00
parent f21307e5c9
commit d448045669
3 changed files with 18 additions and 12 deletions

View file

@ -155,8 +155,9 @@ Other Changes:
next to each components, in multi-components functions.
- Added a way to select a specific marker color.
- InputText:
- ImGuiInputTextCallbackData::SelectAll() also sets CursorPos to SelectionEnd.
- Made ImGuiInputTextCallbackData::SelectAll() also sets CursorPos to SelectionEnd.
- Added ImGuiInputTextCallbackData::SetSelection() helper.
- Added ImGuiInputTextCallbackData::ID field.
- Text, InputText:
- Reworked word-wrapping logic:
- Try to not wrap in the middle of contiguous punctuations. (#8139, #8439, #9094)