forked from mirrors/linphone-iphone
Fix UI bug when rotating while keyboard displayed in chatListsView
This commit is contained in:
parent
1971e4c430
commit
5d92ce525f
1 changed files with 8 additions and 0 deletions
|
|
@ -63,6 +63,14 @@
|
|||
}
|
||||
}
|
||||
|
||||
- (void)layoutSubviews {
|
||||
[self.tableView layoutSubviews];
|
||||
|
||||
CGSize contentSize = self.tableView.contentSize;
|
||||
contentSize.width = self.tableView.bounds.size.width;
|
||||
self.tableView.contentSize = contentSize;
|
||||
}
|
||||
|
||||
#pragma mark -
|
||||
|
||||
static int sorted_history_comparison(LinphoneChatRoom *to_insert, LinphoneChatRoom *elem) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue