mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
feat: Added "Jump to address" option to data inspector row context menu
This commit is contained in:
@@ -429,11 +429,11 @@ namespace hex::plugin::builtin {
|
||||
m_selectedEntryName.reset();
|
||||
}
|
||||
if (ImGui::IsMouseClicked(ImGuiMouseButton_Right)) {
|
||||
ImGui::OpenPopup("##InspectorMenu");
|
||||
ImGui::OpenPopup("##DataInspectorRowContextMenu");
|
||||
}
|
||||
}
|
||||
|
||||
if (ImGui::BeginPopup("##InspectorMenu")) {
|
||||
if (ImGui::BeginPopup("##DataInspectorRowContextMenu")) {
|
||||
if (ImGui::MenuItemEx("hex.builtin.view.data_inspector.menu.copy"_lang, ICON_VS_COPY)) {
|
||||
ImGui::SetClipboardText(copyValue.c_str());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user