forked from organicmaps/organicmaps
[ios] Fixed bug with fullscreen compass.
This commit is contained in:
parent
acc6b874dc
commit
cac7a9e571
1 changed files with 3 additions and 2 deletions
|
@ -38,12 +38,13 @@ static CGFloat const kDirectionArrowSide = IPAD ? 260. : 160.;
|
|||
|
||||
- (void)layoutSubviews
|
||||
{
|
||||
self.frame = self.superview.bounds;
|
||||
UIView * superview = self.superview;
|
||||
self.frame = superview.bounds;
|
||||
CGSize const size = self.superview.size;
|
||||
self.size = size;
|
||||
CGFloat const minimumBorderOffset = 40.;
|
||||
BOOL const isLandscape = size.width > size.height;
|
||||
|
||||
[superview bringSubviewToFront:self];
|
||||
if (isLandscape)
|
||||
{
|
||||
CGFloat const defaultWidth = size.width - 3. * minimumBorderOffset - kDirectionArrowSide;
|
||||
|
|
Loading…
Add table
Reference in a new issue