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:
parent
7d8d587bc0
commit
d7fec5e1d3
3 changed files with 9 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue