Input Widget - fix so that clearing the textbox will also change the bg color properly (remove conflicted state)

This commit is contained in:
adelikat 2013-07-29 20:18:38 +00:00
parent fe7826f1da
commit 09320dc319
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }