Skip to content

Commit

Permalink
fix: fix get_all_items() with table columns issue hoffstadt#2027
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffstadt authored and SamuMazzi committed Jan 31, 2024
1 parent 04564db commit 6f8da8d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/dearpygui_commands.h
Original file line number Diff line number Diff line change
Expand Up @@ -3185,9 +3185,12 @@ GetAllItemsRoot(std::vector<std::shared_ptr<mvAppItem>>& roots, std::vector<mvUU
}
for (auto& child : children2)
{
childList.emplace_back(child->uuid);
if (DearPyGui::GetEntityDesciptionFlags(child->type) & MV_ITEM_DESC_CONTAINER)
ChildRetriever(child);
if (child)
{
childList.emplace_back(child->uuid);
if (DearPyGui::GetEntityDesciptionFlags(child->type) & MV_ITEM_DESC_CONTAINER)
ChildRetriever(child);
}
}

};
Expand Down

0 comments on commit 6f8da8d

Please sign in to comment.