From cd299c27105d328099ddf9b34ecacb745e44fa01 Mon Sep 17 00:00:00 2001 From: Sour Date: Mon, 10 Dec 2018 20:11:34 -0500 Subject: [PATCH] Debugger: Memory Tools - Fixed UI refresh problem when using Home/End keys to navigate while the first/last byte is already visible on the screen (caret did not move properly) --- GUI.NET/Debugger/HexBox/HexBox.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI.NET/Debugger/HexBox/HexBox.cs b/GUI.NET/Debugger/HexBox/HexBox.cs index 297432cc..e1758f87 100644 --- a/GUI.NET/Debugger/HexBox/HexBox.cs +++ b/GUI.NET/Debugger/HexBox/HexBox.cs @@ -596,7 +596,7 @@ namespace Be.Windows.Forms _hexBox.ScrollByteIntoView(); _hexBox.UpdateCaret(); _hexBox.ReleaseSelection(); - + _hexBox.Invalidate(); return true; } @@ -615,7 +615,7 @@ namespace Be.Windows.Forms _hexBox.ScrollByteIntoView(); _hexBox.UpdateCaret(); _hexBox.ReleaseSelection(); - + _hexBox.Invalidate(); return true; }