Merge pull request #1346 from VladiMihaylenko/master

[ios] Fixed tall alerts on iOS7 and small screens. (master)
This commit is contained in:
igrechuhin 2016-01-12 16:57:05 +03:00
commit 7d2c71c32a

View file

@ -67,7 +67,7 @@ static NSString * const kStatisticsEvent = @"Routing Disclaimer Alert";
- (CGFloat)bounded:(CGFloat)f withHeight:(CGFloat)h
{
CGFloat const currentHeight = [self.subviews.firstObject height];
CGFloat const maximumHeight = h - 2. * kMinimumOffset;
CGFloat const maximumHeight = h - (isIOSVersionLessThan(8) ? 4. : 2.) * kMinimumOffset;
CGFloat const availableHeight = maximumHeight - currentHeight;
return MIN(f, availableHeight + self.textViewHeight.constant);
}