impr: Make strings in the data information view selectable and copyable

This commit is contained in:
WerWolv
2025-01-14 22:05:29 +01:00
parent e36f2f2bcb
commit e1637824c6
3 changed files with 15 additions and 13 deletions

View File

@@ -78,7 +78,7 @@ namespace hex::plugin::yara {
if (ImGuiExt::BeginSubWindow(categoryName.c_str())) {
for (const auto &match : category.matchedRules) {
const auto &ruleName = match.metadata.contains("name") ? match.metadata.at("name") : match.identifier;
ImGui::TextUnformatted(ruleName.c_str());
ImGuiExt::TextFormattedSelectable("{}", ruleName);
}
}
ImGuiExt::EndSubWindow();