For Qt GUI, added logic to raise and shift focus to hex editor window when opening from debugger. Fixes issue #509.

This commit is contained in:
harry 2022-05-30 05:38:49 -04:00 committed by zeromus
parent fc9f89dafc
commit 0287395bee
1 changed files with 6 additions and 0 deletions

View File

@ -4205,6 +4205,12 @@ int hexEditorOpenFromDebugger( int mode, int addr )
win->show();
}
else
{
win->activateWindow();
win->raise();
win->setFocus();
}
win->editor->setMode( mode );
win->editor->setAddr( addr );