Skip to content

Commit

Permalink
Fix a dumb typo
Browse files Browse the repository at this point in the history
  • Loading branch information
StanleySweet committed Jan 31, 2018
1 parent c44ba27 commit 325d219
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ private void ClearLists()
{
foreach (var box in m_ResultBoxes)
Destroy(box);
this.m_TextInputMesh.text = "";
this.m_ResultBoxes.Clear();
}

Expand Down Expand Up @@ -174,7 +175,7 @@ private void Scan(string text)
}
else if (this.m_Searching)
{
if (!string.IsNullOrEmpty(m_WordToSearch) || !string.IsNullOrEmpty(this.m_TextPromptMesh.text))
if (!string.IsNullOrEmpty(m_WordToSearch) || !string.IsNullOrEmpty(this.m_TextInputMesh.text))
{
if (Constants.CORRECTION_KEYWORD.Equals(text))
{
Expand Down

0 comments on commit 325d219

Please sign in to comment.