ImGui::InputText: added support for shift+click style selection. (#5619)

(Amend, force-push: sorry wrong edit by omar)
This commit is contained in:
Constantine Tarasenkov
2022-08-28 20:12:44 +03:00
committed by ocornut
parent fe62927bd8
commit b87e58fab3
3 changed files with 6 additions and 3 deletions

View File

@ -86,6 +86,7 @@ Other Changes:
Enter keep the input active and select all text.
- 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]
- 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)