diff --git a/android/res/layout/edit_bookmark_common.xml b/android/res/layout/edit_bookmark_common.xml index 7bbef270b5..9fec7272c5 100644 --- a/android/res/layout/edit_bookmark_common.xml +++ b/android/res/layout/edit_bookmark_common.xml @@ -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"/> diff --git a/iphone/Maps/Bookmarks/BookmarksRootVC.mm b/iphone/Maps/Bookmarks/BookmarksRootVC.mm index 3da09098e7..1a67bd54db 100644 --- a/iphone/Maps/Bookmarks/BookmarksRootVC.mm +++ b/iphone/Maps/Bookmarks/BookmarksRootVC.mm @@ -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;