mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
fix lime devices view
This commit is contained in:
parent
707f07e17a
commit
e28875d5f8
1 changed files with 3 additions and 1 deletions
|
|
@ -102,7 +102,9 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(nonnull NSIndexPath *)indexPath
|
||||
{
|
||||
DevicesMenuEntry *entry = [_devicesMenuEntries objectAtIndex:indexPath.row];
|
||||
return entry->numberOfDevices > 1 ? (entry->numberOfDevices + 1) * 56.0 : 56.0;
|
||||
if (entry->myself)
|
||||
return (entry->numberOfDevices + 1) * 56.0;
|
||||
return entry->numberOfDevices > 1 ? (entry->numberOfDevices + 1) * 56.0 : 56.0;
|
||||
}
|
||||
|
||||
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue