Merge pull request #4184 from Zverik/capbook

[bookmarks] Words → Sentences capitalization
This commit is contained in:
Илья Гречухин 2016-08-31 21:42:53 +04:00 committed by GitHub
commit 4895fc86e1
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/name"
android:inputType="textCapWords"
android:inputType="textCapSentences"
android:singleLine="true"/>
</com.mapswithme.maps.widget.CustomTextInputLayout>

View file

@ -214,7 +214,7 @@
f.font = [cell.textLabel.font fontWithSize:[cell.textLabel.font pointSize]];
f.tag = TEXTFIELD_TAG;
f.delegate = self;
f.autocapitalizationType = UITextAutocapitalizationTypeWords;
f.autocapitalizationType = UITextAutocapitalizationTypeSentences;
cell.textLabel.hidden = YES;
cell.detailTextLabel.hidden = YES;
cell.accessoryType = UITableViewCellAccessoryNone;