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

Tables: fixed a bug where nesting BeginTable()->Begin()->BeginTable(). (#9005)

This commit is contained in:
ocornut 2025-10-15 16:50:11 +02:00
parent 7d8d587bc0
commit d7fec5e1d3
3 changed files with 9 additions and 2 deletions

View file

@ -43,6 +43,11 @@ Breaking Changes:
Other Changes:
- Tables: fixed a bug where nesting BeginTable()->Begin()->BeginTable() would
result in temporarily incorrect state, which would lead to bugs to side effects
in various locations, e.g. GetContentRegionAvail() calls or using clipper. (#9005)
EndTable() was mistakenly restoring a wrong current table.
-----------------------------------------------------------------------
VERSION 1.92.4 (Released 2025-10-14)