From 966156fd09fc389cf28ee5727f7a740e907eeedc Mon Sep 17 00:00:00 2001 From: Guillaume BIENKOWSKI Date: Thu, 14 Nov 2013 17:28:43 +0100 Subject: [PATCH] UICallCell height is actually not dependent on iPad/iPhone distinction. Both have changed. --- Classes/LinphoneUI/UICallCell.m | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Classes/LinphoneUI/UICallCell.m b/Classes/LinphoneUI/UICallCell.m index 5bb82643a..fc9bc1490 100644 --- a/Classes/LinphoneUI/UICallCell.m +++ b/Classes/LinphoneUI/UICallCell.m @@ -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 {