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)

This commit is contained in:
Sour 2018-12-10 20:11:34 -05:00
parent 7782fae054
commit cd299c2710

View file

@ -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;
}