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()
|
||||
{
|
||||
ClearBindings();
|
||||
conflicted = false;
|
||||
Conflicted = false;
|
||||
Text = "";
|
||||
}
|
||||
|
||||
|
@ -142,7 +142,7 @@ namespace BizHawk.MultiClient
|
|||
if (TempBindingStr == "Escape")
|
||||
{
|
||||
ClearBindings();
|
||||
conflicted = false;
|
||||
Conflicted = false;
|
||||
Increment();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue