on specialized number boxes, select all text when reseting an empty box to a default value. This fixes #685

This commit is contained in:
adelikat 2016-11-09 10:19:49 -06:00
parent 6a4515298c
commit 36dcf53cc0
2 changed files with 6 additions and 0 deletions

View File

@ -129,6 +129,8 @@ namespace BizHawk.Client.EmuHawk
if (string.IsNullOrWhiteSpace(Text))
{
ResetText();
SelectAll();
return;
}
base.OnTextChanged(e);
@ -252,6 +254,8 @@ namespace BizHawk.Client.EmuHawk
if (string.IsNullOrWhiteSpace(Text) || !Text.IsHex())
{
ResetText();
SelectAll();
return;
}
base.OnTextChanged(e);

View File

@ -589,6 +589,8 @@ namespace BizHawk.Client.EmuHawk
if (string.IsNullOrWhiteSpace(Text))
{
ResetText();
SelectAll();
return;
}
switch (_type)