UICallCell height is actually not dependent on iPad/iPhone distinction.

Both have changed.
This commit is contained in:
Guillaume BIENKOWSKI 2013-11-14 17:28:43 +01:00
parent bf739c229c
commit 966156fd09

View file

@ -272,13 +272,11 @@
#pragma mark - Static Functions
+ (int)getMaximizedHeight {
int height = [LinphoneManager runningOnIpad] ? 300 : 280;
return height;
return 300;
}
+ (int)getMinimizedHeight {
int height = [LinphoneManager runningOnIpad] ? 63 : 54;
return height;
return 63;
}
+ (void)adaptSize:(UILabel*)label field:(UIView*)field {