Hex Editor - on find next/prev focus Hex Editor rather than find box

This commit is contained in:
adelikat 2012-06-25 03:13:02 +00:00
parent 7291a8ab0f
commit 5f3f6547aa
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,6 @@ namespace BizHawk.MultiClient
//Increment/Decrement wrapping logic for 4 byte values is messed up
//HIghlight:
//find next/prev should focus memory viewer box so that F2 and F3 work
//shift+click off by one descending (ascending untested) (shift click 0000 and it fails)
int defaultWidth;
@ -1777,6 +1776,7 @@ namespace BizHawk.MultiClient
HighlightSecondaries(search, found);
GoToAddress(found);
FindStr = search;
MemoryViewerBox.Focus();
}
}
@ -1820,7 +1820,7 @@ namespace BizHawk.MultiClient
HighlightSecondaries(search, found);
GoToAddress(found);
FindStr = search;
MemoryViewerBox.Focus();
}
}