From c40ebd66343dec131eade1efd1322cb90f58ddd9 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Tue, 30 Aug 2016 18:13:42 +0300 Subject: [PATCH] =?UTF-8?q?[bookmarks]=20Words=20=E2=86=92=20Sentences=20c?= =?UTF-8?q?apitalization?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/res/layout/edit_bookmark_common.xml | 2 +- iphone/Maps/Bookmarks/BookmarksRootVC.mm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;