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);
|
||||
autoGetStuff;
|
||||
readOutput;
|
||||
application.BringToFront;
|
||||
subjDebugBreak(fSubj, fLastFilename, line, brkreason);
|
||||
end;
|
||||
end
|
||||
|
@ -1882,6 +1883,7 @@ begin
|
|||
or (reason = 'exited')
|
||||
then
|
||||
begin
|
||||
application.BringToFront;
|
||||
readOutput;
|
||||
if not fOptions.showGdbOutput then
|
||||
fMsg.message('debugging terminated: ' + reason, nil, amcMisc, amkInf);
|
||||
|
@ -2347,7 +2349,7 @@ begin
|
|||
end;
|
||||
|
||||
|
||||
//TODO-cGDB: copy from call stack list
|
||||
//TODO-cGDB: copy from the lists: value, instructions, etc.
|
||||
|
||||
procedure TCEGdbWidget.setGpr(reg: TCpuRegister; val: TCpuGprValue);
|
||||
const
|
||||
|
|
Loading…
Reference in New Issue