IO: Filter duplicate input events during the AddXXX() calls. (#5599, #4921)

This commit is contained in:
ocornut
2022-09-29 21:59:32 +02:00
parent fac8295d6e
commit cc5058e5d7
3 changed files with 54 additions and 17 deletions

View File

@ -130,6 +130,7 @@ Other Changes:
- IO: Added ImGuiMod_Shortcut which is ImGuiMod_Super on Mac and ImGuiMod_Ctrl otherwise. (#456)
- IO: Added ImGuiKey_MouseXXX aliases for mouse buttons/wheel so all operations done on ImGuiKey
can apply to mouse data as well. (#4921)
- IO: Filter duplicate input events during the AddXXX() calls. (#5599, #4921)
- Menus: Fixed incorrect sub-menu parent association when opening a menu by closing another.
Among other things, it would accidentally break part of the closing heuristic logic when moving
towards a sub-menu. (#2517, #5614). [@rokups]