forked from mirrors/linphone-iphone
Change the group chat info popup menu size to match the available features
This commit is contained in:
parent
f489d4747a
commit
d42c8d0053
1 changed files with 5 additions and 0 deletions
|
|
@ -240,6 +240,11 @@ static UICompositeViewDescription *compositeDescription = nil;
|
|||
completion:nil];
|
||||
}
|
||||
[self configureForRoom:self.editing];
|
||||
|
||||
// Resize the popup table depending on wether ephemeral messages are enabled or not.
|
||||
CGRect popupFrame = _popupMenu.frame;
|
||||
popupFrame.size.height = 44 * [_popupMenu numberOfRowsInSection:0];
|
||||
_popupMenu.frame = popupFrame;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue