mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Fix in-call glitch where enabling/disabling the details view would show a bad cell size for a moment.
This commit is contained in:
parent
7be6bace3a
commit
24051b4221
1 changed files with 4 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue