Debugger: HexBox - Fixed issue with cursor jumping back to hex mode when trying to type ascii
This commit is contained in:
parent
027470186d
commit
dc5ddaf87e
1 changed files with 6 additions and 4 deletions
|
@ -3255,10 +3255,12 @@ namespace Be.Windows.Forms
|
|||
if (_byteProvider == value)
|
||||
return;
|
||||
|
||||
if (value == null)
|
||||
ActivateEmptyKeyInterpreter();
|
||||
else
|
||||
ActivateKeyInterpreter();
|
||||
if(_keyInterpreter == null) {
|
||||
if(value == null)
|
||||
ActivateEmptyKeyInterpreter();
|
||||
else
|
||||
ActivateKeyInterpreter();
|
||||
}
|
||||
|
||||
if (_byteProvider != null)
|
||||
_byteProvider.LengthChanged -= new EventHandler(_byteProvider_LengthChanged);
|
||||
|
|
Loading…
Add table
Reference in a new issue