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
path: root/iphone
diff options
context:
space:
mode:
authorIgor Khmurets <subzero@mapswithme.com>2014-09-12 17:04:13 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:26:48 +0300
commit4bd29e916aed2f2b8cb2c32d0f69d646a0d6c932 (patch)
tree4dceaebf6220b202e0e4f9dbffa63c9c7d3fed3a /iphone
parentb55302c00028f6ba7d7f4f29cb93ecdc0dd17678 (diff)
[ios] PP background tiling fix
Diffstat (limited to 'iphone')
-rw-r--r--iphone/Maps/Classes/PlacePageView.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/iphone/Maps/Classes/PlacePageView.mm b/iphone/Maps/Classes/PlacePageView.mm
index 4f11698d63..8f787fa516 100644
--- a/iphone/Maps/Classes/PlacePageView.mm
+++ b/iphone/Maps/Classes/PlacePageView.mm
@@ -1231,7 +1231,7 @@ typedef NS_ENUM(NSUInteger, CellRow)
if (!_backgroundView)
{
_backgroundView = [[UIImageView alloc] initWithFrame:self.bounds];
- _backgroundView.image = [[UIImage imageNamed:@"PlacePageBackground"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 18, 0)];
+ _backgroundView.image = [[UIImage imageNamed:@"PlacePageBackground"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 19, 0)];
_backgroundView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
}
return _backgroundView;