RoomViewController: Disable reply on single tap selection.

This commit is contained in:
SBiOSoftWhare
2019-05-15 23:30:33 +02:00
parent 8e7dd40df7
commit 1db09d6feb
+1 -3
View File
@@ -2854,9 +2854,7 @@
- (void)selectEventWithId:(NSString*)eventId
{
BOOL shouldEnableReplyMode = [self.roomDataSource canReplyToEventWithId:eventId];
[self selectEventWithId:eventId enableReplyMode:shouldEnableReplyMode showTimestamp:YES];
[self selectEventWithId:eventId enableReplyMode:NO showTimestamp:YES];
}
- (void)selectEventWithId:(NSString*)eventId enableReplyMode:(BOOL)enableReplyMode showTimestamp:(BOOL)showTimestamp