Skip to content

Commit

Permalink
Merge pull request #2101 from davidkline-ms/dev917
Browse files Browse the repository at this point in the history
[dev] fix #917 and duplicate kbd backspace issues
  • Loading branch information
David Kline authored May 15, 2018
2 parents 2525a3d + 6d6451d commit 9241481
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 9241481

Please sign in to comment.