1
0
mirror of synced 2025-01-22 19:42:11 +01:00

fix: ID collision in provider data information section

This commit is contained in:
WerWolv 2025-01-15 20:34:25 +01:00
parent 6a1de5fc4e
commit 8eb7e9fb05

View File

@ -42,7 +42,9 @@ namespace hex::plugin::builtin {
ImGui::TableNextColumn(); ImGui::TableNextColumn();
ImGuiExt::TextFormatted("{}", name); ImGuiExt::TextFormatted("{}", name);
ImGui::TableNextColumn(); ImGui::TableNextColumn();
ImGui::PushID(name.c_str());
ImGuiExt::TextFormattedWrappedSelectable("{}", value); ImGuiExt::TextFormattedWrappedSelectable("{}", value);
ImGui::PopID();
} }
ImGui::TableNextColumn(); ImGui::TableNextColumn();