Skip to content

Commit

Permalink
Set AutocorrectionType on the UITextField if it has been created.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddunkin committed May 21, 2014
1 parent 05b08b1 commit cb92fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CrossUI/CrossUI.Touch/Dialog/Elements/EntryElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public UITextAutocorrectionType AutocorrectionType
{
autocorrectionType = value;
if (_entry != null)
this.autocorrectionType = value;
_entry.AutocorrectionType = value;
}
}

Expand Down

0 comments on commit cb92fed

Please sign in to comment.