Skip to content

Commit

Permalink
fix #917 and duplicate kbd backspace issues
Browse files Browse the repository at this point in the history
  • Loading branch information
David Kline (ANALOG) committed May 14, 2018
1 parent 2525a3d commit 6d6451d
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@ public override void OnPointerClick(PointerEventData eventData)
/// <param name="newText"></param>
private void Keyboard_OnTextUpdated(string newText)
{
if (!string.IsNullOrEmpty(newText))
{
text = newText;
}
text = newText;
}

/// <summary>
Expand Down

0 comments on commit 6d6451d

Please sign in to comment.