From 6bfb4be61cab9c4ab9f4840848ad562b33b8ac62 Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 19 Jun 2012 01:33:32 +0000 Subject: [PATCH] Hex Editor - fix scroll wheel scrolling broken on last Hex Editor commit --- BizHawk.MultiClient/tools/HexEditor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.MultiClient/tools/HexEditor.cs b/BizHawk.MultiClient/tools/HexEditor.cs index fec81f8a72..2aaf55dc8b 100644 --- a/BizHawk.MultiClient/tools/HexEditor.cs +++ b/BizHawk.MultiClient/tools/HexEditor.cs @@ -1260,6 +1260,7 @@ namespace BizHawk.MultiClient { vScrollBar1.Value--; MemoryViewerBox.Refresh(); + AddressLabel.Text = GenerateAddressString(); UpdateValues(); } } @@ -1269,6 +1270,7 @@ namespace BizHawk.MultiClient { vScrollBar1.Value++; MemoryViewerBox.Refresh(); + AddressLabel.Text = GenerateAddressString(); UpdateValues(); } }