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

ListBox: Fixed text-baseline offset when using SameLine()+Text() after a labeled ListBox().

Visible in demo->basic->listbox
This commit is contained in:
ocornut 2024-04-03 10:18:49 +09:00
parent d3c3514a59
commit 9a2b598ec1
3 changed files with 4 additions and 0 deletions

View file

@ -73,6 +73,7 @@ Other changes:
it would generally manifest when fast moving the mouse bottom to top in a sub-menu.
(#7325, #7287, #7063)
- ProgressBar: Fixed passing fraction==NaN from leading to a crash. (#7451)
- ListBox: Fixed text-baseline offset when using SameLine()+Text() after a labeled ListBox().
- Style: Added ImGuiStyleVar_TabBorderSize, ImGuiStyleVar_TableAngledHeadersAngle for
consistency. (#7411) [@cfillion]
- DrawList: Added AddConcavePolyFilled(), PathFillConcave() concave filling. (#760) [@thedmd]