mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:08:12 +02:00
Debugger: If asm stepping stops in source (e.g. asm-step over hits breakpoint / or step ends at known source) then update source-editor. Fix regression from issue #40415 f051d0bd65
This commit is contained in:
parent
93da1812b9
commit
5111f33390
@ -1770,18 +1770,20 @@ begin
|
||||
|
||||
// jump editor to execution line
|
||||
Flags := [jfAddJumpPoint, jfSearchVirtualFullPath];
|
||||
if (FCurrentBreakPoint = nil) or (FCurrentBreakPoint.AutoContinueTime = 0)
|
||||
then include(Flags, jfFocusEditor);
|
||||
if ( (not FAsmStepping) or (FDialogs[ddtAssembler] = nil) or
|
||||
(not FDialogs[ddtAssembler].IsVisible) or (not FDialogs[ddtAssembler].Active)
|
||||
) and
|
||||
( (FCurrentBreakPoint = nil) or (FCurrentBreakPoint.AutoContinueTime = 0) )
|
||||
then
|
||||
include(Flags, jfFocusEditor);
|
||||
i := SrcLine;
|
||||
if (Editor <> nil) then
|
||||
i := Editor.DebugToSourceLine(i);
|
||||
if not (FAsmStepping and (FDialogs[ddtAssembler] <> nil) and
|
||||
FDialogs[ddtAssembler].IsVisible and FDialogs[ddtAssembler].Active )
|
||||
then
|
||||
if MainIDE.DoJumpToCodePosition(nil,nil,NewSource,1,i,-1,-1,-1,Flags)<>mrOk
|
||||
then exit;
|
||||
FAsmStepping := False;
|
||||
|
||||
if MainIDE.DoJumpToCodePosition(nil,nil,NewSource,1,i,-1,-1,-1,Flags)<>mrOk
|
||||
then exit;
|
||||
|
||||
// mark execution line
|
||||
if (Editor = nil) and (SourceEditorManager <> nil) then
|
||||
Editor := SourceEditorManager.ActiveEditor;
|
||||
|
Loading…
Reference in New Issue
Block a user