Fix UI bug when rotating while keyboard displayed in chatListsView

This commit is contained in:
Benjamin Reis 2017-02-06 16:40:38 +01:00
parent 1971e4c430
commit 5d92ce525f

View file

@ -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) {