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

InputText: fixed pressing End (without Shift) in a multi-line selection from mistakenly moving cursor based on selection start.

This commit is contained in:
ocornut 2025-09-11 18:44:50 +02:00
parent e2b7d84e96
commit f36c65661c
2 changed files with 3 additions and 1 deletions

View file

@ -69,6 +69,8 @@ Other Changes:
- InputText: revert a change in 1.79 where pressing Down or PageDown on the last line
of a multi-line buffer without a trailing carriage return would keep the cursor
unmoved. We revert back to move to the end of line in this situation.
- InputText: fixed pressing End (without Shift) in a multi-line selection from
mistakenly moving cursor based on selection start.
- Focus, InputText: fixed an issue where SetKeyboardFocusHere() did not work
on InputTextMultiline() fields with ImGuiInputTextFlags_AllowTabInput, since
they normally inhibit activation to allow tabbing through multiple items. (#8928)