Examples: Win32: Added support for mouse buttons 4 and 5 via WM_XBUTTON* messages. (#2264)

This commit is contained in:
omar
2019-01-17 16:55:23 +01:00
parent bebb07f12d
commit b8020032f9
2 changed files with 13 additions and 7 deletions

View File

@ -42,6 +42,7 @@ Other Changes:
- Examples: Win32: Using GetForegroundWindow()+IsChild() instead of GetActiveWindow() to be compatible with windows created
in a different thread or parent. (#1951, #2087, #2156, #2232) [many people]
- Examples: Win32: Added support for XInput games (if ImGuiConfigFlags_NavEnableGamepad is enabled).
- Examples: Win32: Added support for mouse buttons 4 and 5 via WM_XBUTTON* messages. (#2264)
- Examples: DirectX9: Explicitly disable fog (D3DRS_FOGENABLE) before drawing in case user state has it set. (#2288, #2230)