on specialized number boxes, select all text when reseting an empty box to a default value. This fixes #685
This commit is contained in:
parent
6a4515298c
commit
36dcf53cc0
|
@ -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);
|
||||
|
|
|
@ -589,6 +589,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (string.IsNullOrWhiteSpace(Text))
|
||||
{
|
||||
ResetText();
|
||||
SelectAll();
|
||||
return;
|
||||
}
|
||||
|
||||
switch (_type)
|
||||
|
|
Loading…
Reference in New Issue