1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +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

@ -3045,6 +3045,7 @@ struct IMGUI_API ImGuiTable
// sizeof() ~ 136 bytes.
struct IMGUI_API ImGuiTableTempData
{
ImGuiID WindowID; // Shortcut to g.Tables[TableIndex]->OuterWindow->ID.
int TableIndex; // Index in g.Tables.Buf[] pool
float LastTimeActive; // Last timestamp this structure was used
float AngledHeadersExtraWidth; // Used in EndTable()