mirror of https://gitlab.com/basile.b/dexed.git
#97, bring IDE to front on breakpoint
This commit is contained in:
parent
b7afbbe0ba
commit
5e2938c4b9
|
@ -1812,6 +1812,7 @@ begin
|
||||||
setState(gsPaused);
|
setState(gsPaused);
|
||||||
autoGetStuff;
|
autoGetStuff;
|
||||||
readOutput;
|
readOutput;
|
||||||
|
application.BringToFront;
|
||||||
subjDebugBreak(fSubj, fLastFilename, line, brkreason);
|
subjDebugBreak(fSubj, fLastFilename, line, brkreason);
|
||||||
end;
|
end;
|
||||||
end
|
end
|
||||||
|
@ -1882,6 +1883,7 @@ begin
|
||||||
or (reason = 'exited')
|
or (reason = 'exited')
|
||||||
then
|
then
|
||||||
begin
|
begin
|
||||||
|
application.BringToFront;
|
||||||
readOutput;
|
readOutput;
|
||||||
if not fOptions.showGdbOutput then
|
if not fOptions.showGdbOutput then
|
||||||
fMsg.message('debugging terminated: ' + reason, nil, amcMisc, amkInf);
|
fMsg.message('debugging terminated: ' + reason, nil, amcMisc, amkInf);
|
||||||
|
@ -2347,7 +2349,7 @@ begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
//TODO-cGDB: copy from call stack list
|
//TODO-cGDB: copy from the lists: value, instructions, etc.
|
||||||
|
|
||||||
procedure TCEGdbWidget.setGpr(reg: TCpuRegister; val: TCpuGprValue);
|
procedure TCEGdbWidget.setGpr(reg: TCpuRegister; val: TCpuGprValue);
|
||||||
const
|
const
|
||||||
|
|
Loading…
Reference in New Issue