1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-28 02:50:06 +00:00

InputText: do not set WantTextInputNextFrame during the frame InputText is deactivated. (#6341)

This commit is contained in:
lukaasm 2023-04-17 19:37:36 +02:00 committed by ocornut
parent e49d31a1c9
commit 0948cfc19e
2 changed files with 6 additions and 2 deletions

View file

@ -44,6 +44,8 @@ Other changes:
- Tables: Fixed a small miscalculation in TableHeader() leading to an empty tooltip
showing when a sorting column has no visible name. (#6342) [@lukaasm]
- InputText: Avoid setting io.WantTextInputNextFrame during the deactivation frame.
(#6341) [@lukaasm]
- Backends: Clear bits sets io.BackendFlags on backend Shutdown(). (#6334, #6335] [@GereonV]
Potentially this would facilitate switching runtime backend mid-session.