Skip to content

Commit

Permalink
GUI: Disable CFAR Node menu item to goto node in verifier. Ran out of…
Browse files Browse the repository at this point in the history
… time to complete.
  • Loading branch information
jim-carciofini committed Jan 22, 2025
1 parent d9c70ff commit 65c1387
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pate_binja/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,9 +1369,10 @@ def nodePopupMenu(self, event: QMouseEvent, node: FlowGraphNode):

menu = QMenu(self)

action = QAction('Goto node in Pate', self)
action.triggered.connect(lambda _: self.gotoNodeInPate(cfarNode))
menu.addAction(action)
# [20250121:JCC] Ran out of time to complete this.
# action = QAction('Goto node in Pate', self)
# action.triggered.connect(lambda _: self.gotoNodeInPate(cfarNode))
# menu.addAction(action)

if cfarNode.original_addr:
action = QAction(f'Goto original address {hex(cfarNode.original_addr)}', self)
Expand Down

0 comments on commit 65c1387

Please sign in to comment.