Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorv.mikhaylenko <v.mikhaylenko@corp.mail.ru>2015-06-24 19:20:15 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:56 +0300
commitcfd112f0c0d114ac1e0446417cc8d129c8a9d29c (patch)
tree60544f105002cc13f69dcdab0f484930652068ed /iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
parent2a0bd7e1ae27a2a6b9d8e4e6790dde870a9d54e5 (diff)
[ios] Fixed bug with wrong bookmark title behavior.
Diffstat (limited to 'iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm')
-rw-r--r--iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm3
1 files changed, 3 insertions, 0 deletions
diff --git a/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm b/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
index aa397377eb..520488b4e9 100644
--- a/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
+++ b/iphone/Maps/Classes/MWMPlacePageBookmarkCell.mm
@@ -86,16 +86,19 @@ extern NSString * const kBookmarkCellWebViewDidFinishLoadContetnNotification = @
- (IBAction)colorPickerButtonTap
{
[self.placePage changeBookmarkColor];
+ [self.title resignFirstResponder];
}
- (IBAction)categoryButtonTap
{
[self.placePage changeBookmarkCategory];
+ [self.title resignFirstResponder];
}
- (IBAction)editTap
{
[self.placePage changeBookmarkDescription];
+ [self.title resignFirstResponder];
}
@end