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

InputText: Fixed issue when activating a ReadOnly field when the underlying value is being modified. (#8242)

This commit is contained in:
ocornut 2024-12-18 16:14:04 +01:00
parent f31d53093b
commit e900571ac2
3 changed files with 38 additions and 9 deletions

View file

@ -45,6 +45,8 @@ Other changes:
- InputText: Fixed a bug where character replacements performed from a callback
were not applied when pasting from clipbard. (#8229)
- InputText: Fixed issue when activating a ReadOnly field when the underlying
value is being modified. (#8242)
- Drags: Added ImGuiSliderFlags_NoSpeedTweaks flag to disable keyboard
modifiers altering the tweak speed. Useful if you want to alter tweak speed
yourself based on your own logic. (#8223)