fix hex editor not repainting when editing bytes to the same value as before

This commit is contained in:
zeromus 2015-10-18 18:44:57 -05:00
parent 5906bf232b
commit 32a1101713
1 changed files with 3 additions and 0 deletions

View File

@ -1901,6 +1901,7 @@ namespace BizHawk.Client.EmuHawk
ClearNibbles();
SetHighlighted(_addressHighlighted + 1);
UpdateValues();
Refresh();
}
break;
@ -1929,6 +1930,7 @@ namespace BizHawk.Client.EmuHawk
ClearNibbles();
SetHighlighted(_addressHighlighted + 2);
UpdateValues();
Refresh();
}
break;
@ -1980,6 +1982,7 @@ namespace BizHawk.Client.EmuHawk
ClearNibbles();
SetHighlighted(_addressHighlighted + 4);
UpdateValues();
Refresh();
}
break;