Added missing Test Engine hooks for PlotXXX(), VSliderXXX(), TableHeader().

This commit is contained in:
ocornut
2026-04-16 16:39:07 +02:00
parent ce855cada2
commit d4783bd553
3 changed files with 5 additions and 0 deletions

View File

@@ -3311,6 +3311,8 @@ void ImGui::TableHeader(const char* label)
// We don't use BeginPopupContextItem() because we want the popup to stay up even after the column is hidden
if (IsPopupOpenRequestForItem(ImGuiPopupFlags_None, id))
TableOpenContextMenu(column_n);
IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags);
}
// Unlike TableHeadersRow() it is not expected that you can reimplement or customize this with custom widgets.