diff --git a/Classes/ContactDetailsView.m b/Classes/ContactDetailsView.m index cd1cf3992..1b7f3ae39 100644 --- a/Classes/ContactDetailsView.m +++ b/Classes/ContactDetailsView.m @@ -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; + } } }