1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Windows: Fixed subsequent Begin() append calls from setting last item information for title-bar. (#7506, #823)

Amend 067605052, 27fd1b913b
This commit is contained in:
ocornut 2024-04-18 21:10:05 +02:00
parent 361432a0bb
commit fa0120ea5e
2 changed files with 12 additions and 1 deletions

View file

@ -56,6 +56,9 @@ Breaking changes:
Other changes:
- Windows: Fixed subsequent Begin() append calls from setting last item information
for title bar, making it impossible to use IsItemHovered() on a Begin()-to-append,
and causing issue bypassing hover detection on collapsed windows. (#7506, #823)
- Fonts: Fixed font ascent and descent calculation when a font hits exact integer values.
It is possible that some prior manual use of ImFontConfig::GlyphOffset may become
duplicate with this fix. (#7399, #7404) [@GamingMinds-DanielC]