From d55cc1b93ab6d43365315f457138d41c9f25c369 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 2 Sep 2015 10:54:00 +0200 Subject: [PATCH] UIChatRoomCell: click anywhere in the chat bubble to resend text, not only the tiny date and/or delivery status image --- Classes/LinphoneUI/UIChatRoomCell.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Classes/LinphoneUI/UIChatRoomCell.m b/Classes/LinphoneUI/UIChatRoomCell.m index f32e57d08..8bae63bb2 100644 --- a/Classes/LinphoneUI/UIChatRoomCell.m +++ b/Classes/LinphoneUI/UIChatRoomCell.m @@ -66,8 +66,7 @@ static UIFont *CELL_FONT = nil; resendTapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(onResendClick:)]; - [dateLabel addGestureRecognizer:resendTapGestureRecognizer]; - [statusImage addGestureRecognizer:resendTapGestureRecognizer]; + [innerView addGestureRecognizer:resendTapGestureRecognizer]; [self addSubview:innerView]; [deleteButton setAlpha:0.0f];