mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-26 15:14:20 +08:00
GP-2721: Allow thread/frame to remain when focus goes upward
This commit is contained in:
+2
-1
@@ -507,7 +507,8 @@ public class DebuggerCoordinates {
|
||||
}
|
||||
TraceThread newThread = resolveThread(recorder, targetObject);
|
||||
Integer newFrame = resolveFrame(recorder, targetObject);
|
||||
return new DebuggerCoordinates(trace, platform, recorder, newThread, view, time, newFrame,
|
||||
return new DebuggerCoordinates(trace, platform, recorder,
|
||||
newThread == null ? thread : newThread, view, time, newFrame == null ? frame : newFrame,
|
||||
null);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user