mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-28 14:45:47 +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);
|
TraceThread newThread = resolveThread(recorder, targetObject);
|
||||||
Integer newFrame = resolveFrame(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);
|
null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user