Fix in-call glitch where enabling/disabling the details view would show a bad cell size for a moment.

This commit is contained in:
Guillaume BIENKOWSKI 2013-11-13 17:09:44 +01:00
parent 7be6bace3a
commit 24051b4221

View file

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