fix hex editor not repainting when editing bytes to the same value as before
This commit is contained in:
parent
5906bf232b
commit
32a1101713
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue