Moved ImGuiButtonFlags_AllowOverlap from imgui_internal.h to imgui.h + standardize comments.

This commit is contained in:
ocornut
2026-03-16 18:42:22 +01:00
parent 8957b3df03
commit 16772365e2
3 changed files with 7 additions and 4 deletions

View File

@@ -115,6 +115,9 @@ Other Changes:
- Implemented a custom tweak to extend hit-testing bounding box when window is sitting
at the edge of a viewport (e.g. fullscreen or docked window), so that e.g. mouse the
mouse at the extreme of the screen will reach the scrollbar. (#9276)
- Button:
- Moved ImGuiButtonFlags_AllowOverlap from imgui_internal.h to imgui.h,
as a convenience for when using e.g. InvisibleButton().
- Focus: fixed fallback "Debug" window temporarily taking focus and setting io.WantCaptureKeyboard
for one frame on e.g. application boot if no other windows are submitted. (#9243)
- Demo: fixed IMGUI_DEMO_MARKER locations for examples applets. (#9261, #3689) [@pthom]