From b6ba318c569540286a0c296887f7d265f9b91602 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Tue, 7 Nov 2023 14:09:38 +0800 Subject: Support navigating to a raw address when the data offset is double-clicked --- ui/memorymap.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/memorymap.h b/ui/memorymap.h index 7b831c0c..f42edd11 100644 --- a/ui/memorymap.h +++ b/ui/memorymap.h @@ -133,6 +133,7 @@ public: Q_SIGNALS: void currentSegmentChanged(SegmentRef current); void addressDoubleClicked(uint64_t address); + void rawAddressDoubleClicked(uint64_t address); }; /*! @@ -194,6 +195,7 @@ class BINARYNINJAUIAPI MemoryMapSidebarWidget : public SidebarWidget ViewFrame* m_frame; void navigateToAddress(uint64_t address); + void navigateToRawAddress(uint64_t address); public: MemoryMapSidebarWidget(ViewFrame* view, BinaryViewRef data); -- cgit v1.3.1