mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-30 01:39:20 +00:00
UICallCell height is actually not dependent on iPad/iPhone distinction.
Both have changed.
This commit is contained in:
parent
bf739c229c
commit
966156fd09
1 changed files with 2 additions and 4 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue