Commit 0eedf737 authored by Yuwei Huang's avatar Yuwei Huang Committed by Commit Bot

[CRD iOS] Fix typo in ClientKeyboard

There are duplicated lines of _autocorrectionType but the second one is
supposed to be _keyboardAppearance. UIKeyboardAppearanceDefault is the
default value so we weren't seeing bugs before.

Change-Id: I3c91a3496e62f778259c13fd6132ffbc28633ebd
Reviewed-on: https://chromium-review.googlesource.com/744979Reviewed-by: default avatarJamie Walch <jamiewalch@chromium.org>
Commit-Queue: Yuwei Huang <yuweih@chromium.org>
Cr-Commit-Position: refs/heads/master@{#512889}
parent 8db77a10
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
if (self) { if (self) {
_autocapitalizationType = UITextAutocapitalizationTypeNone; _autocapitalizationType = UITextAutocapitalizationTypeNone;
_autocorrectionType = UITextAutocorrectionTypeNo; _autocorrectionType = UITextAutocorrectionTypeNo;
_autocorrectionType = UITextAutocorrectionTypeNo; _keyboardAppearance = UIKeyboardAppearanceDefault;
_keyboardType = UIKeyboardTypeDefault; _keyboardType = UIKeyboardTypeDefault;
_spellCheckingType = UITextSpellCheckingTypeNo; _spellCheckingType = UITextSpellCheckingTypeNo;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment