Tables: tweaked debug tools + minor data packing in in ImGuiTableColumn

This commit is contained in:
ocornut
2026-06-15 16:12:16 +02:00
parent fea6f4603a
commit 94a3dcc5fa
3 changed files with 29 additions and 18 deletions

View File

@@ -16956,7 +16956,7 @@ void ImGui::ShowMetricsWindow(bool* p_open)
if (TreeNode("SettingsTables", "Settings packed data: Tables: %d bytes", g.SettingsTables.size()))
{
for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings))
DebugNodeTableSettings(settings);
DebugNodeTableSettings(settings, NULL);
TreePop();
}