Hex Editor - issue #481 - keep scroll bar position when resetting the current rom as opposed to changing to a new one

This commit is contained in:
adelikat 2015-08-23 12:59:27 -04:00
parent 7edd746f68
commit 674b9b4c07
1 changed files with 9 additions and 1 deletions

View File

@ -136,6 +136,8 @@ namespace BizHawk.Client.EmuHawk
// Do nothing
}
private string _lastRom = string.Empty;
public void Restart()
{
_rom = GetRomBytes();
@ -157,7 +159,13 @@ namespace BizHawk.Client.EmuHawk
BigEndian = _domain.EndianType == MemoryDomain.Endian.Big;
_maxRow = _domain.Size / 2;
ResetScrollBar();
// Don't reset scroll bar if restarting the same rom
if (_lastRom != GlobalWin.MainForm.CurrentlyOpenRom)
{
_lastRom = GlobalWin.MainForm.CurrentlyOpenRom;
ResetScrollBar();
}
SetDataSize(DataSize);
UpdateValues();
AddressLabel.Text = GenerateAddressString();