Input Widget - fix so that clearing the textbox will also change the bg color properly (remove conflicted state)
This commit is contained in:
parent
fe7826f1da
commit
09320dc319
|
@ -125,7 +125,7 @@ namespace BizHawk.MultiClient
|
||||||
public void EraseMappings()
|
public void EraseMappings()
|
||||||
{
|
{
|
||||||
ClearBindings();
|
ClearBindings();
|
||||||
conflicted = false;
|
Conflicted = false;
|
||||||
Text = "";
|
Text = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ namespace BizHawk.MultiClient
|
||||||
if (TempBindingStr == "Escape")
|
if (TempBindingStr == "Escape")
|
||||||
{
|
{
|
||||||
ClearBindings();
|
ClearBindings();
|
||||||
conflicted = false;
|
Conflicted = false;
|
||||||
Increment();
|
Increment();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue