forked from organicmaps/organicmaps
[MAPSME-6625] [ios] Fixed search filters layout issue.
This commit is contained in:
parent
0cce71cbe6
commit
22376c6717
1 changed files with 4 additions and 1 deletions
|
@ -15,7 +15,10 @@ final class FilterCollectionHolderCell: MWMTableViewCell {
|
|||
private func layout() {
|
||||
collectionView.setNeedsLayout()
|
||||
collectionView.layoutIfNeeded()
|
||||
collectionViewHeight.constant = collectionView.contentSize.height
|
||||
if collectionViewHeight.constant != collectionView.contentSize.height {
|
||||
collectionViewHeight.constant = collectionView.contentSize.height
|
||||
frame.size.height = collectionViewHeight.constant
|
||||
}
|
||||
}
|
||||
|
||||
@objc func config(tableView: UITableView?) {
|
||||
|
|
Loading…
Add table
Reference in a new issue