From 5f3f6547aa51e0f02f9784e7cf5c73364c173e07 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 25 Jun 2012 03:13:02 +0000 Subject: [PATCH] Hex Editor - on find next/prev focus Hex Editor rather than find box --- BizHawk.MultiClient/tools/HexEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/HexEditor.cs b/BizHawk.MultiClient/tools/HexEditor.cs index 3e1dae4f37..898bfb1175 100644 --- a/BizHawk.MultiClient/tools/HexEditor.cs +++ b/BizHawk.MultiClient/tools/HexEditor.cs @@ -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(); } }