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:
parent
fc9f89dafc
commit
0287395bee
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue