Fix litle UI bugs in contactLists on IPAD

This commit is contained in:
REIS Benjamin 2016-10-21 15:01:52 +02:00
parent 0d03b378d5
commit ef030954e9

View file

@ -191,9 +191,12 @@
- (void)deviceOrientationDidChange:(NSNotification*)notif {
if (IPAD) {
if (self.contact == NULL || (self.contact.firstName == NULL && self.contact.lastName == NULL)) {
_editButton.hidden = TRUE;
_deleteButton.hidden = TRUE;
_avatarImage.hidden = TRUE;
if (! self.tableController.isEditing) {
_editButton.hidden = TRUE;
_deleteButton.hidden = TRUE;
_avatarImage.hidden = TRUE;
_emptyLabel.hidden = FALSE;
}
}
}