InputText: clarified that callbacks cannot modify buffer when using the ReadOnly flag.

This commit is contained in:
ocornut
2022-09-06 14:33:02 +02:00
parent 9e7c0f985f
commit 2171375f93
2 changed files with 2 additions and 0 deletions

View File

@ -87,6 +87,7 @@ Other Changes:
- InputText: numerical fields automatically accept full-width characters (U+FF01..U+FF5E)
by converting them to half-width (U+0021..U+007E).
- InputText: added support for shift+click style selection. (#5619) [@procedural]
- InputText: clarified that callbacks cannot modify buffer when using the ReadOnly flag.
- IsItemHovered: Added ImGuiHoveredFlags_DelayNormal and ImGuiHoveredFlags_DelayShort flags,
allowing to introduce a shared delay for tooltip idioms. The delays are respectively
io.HoverDelayNormal (default to 0.30f) and io.HoverDelayFast (default to 0.10f). (#1485)