Skip to content

Commit 53b540f

Browse files
GP-2294: Highlight PC with higher priority than breakpoints.
1 parent cf63740 commit 53b540f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/gui/listing/DebuggerListingProvider.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,8 @@ protected void createNewStaticTrackingMarker() {
495495
if (markerService != null && markedAddress != null) {
496496
trackingMarker = markerService.createPointMarker("Tracked Register",
497497
"An address stored by a trace register, mapped to a static program", markedProgram,
498-
0, true, true, true, trackingColor, ICON_REGISTER_MARKER, true);
498+
MarkerService.HIGHLIGHT_PRIORITY + 1, true, true, true, trackingColor,
499+
ICON_REGISTER_MARKER, true);
499500
trackingMarker.add(markedAddress);
500501
}
501502
}

0 commit comments

Comments
 (0)