summaryrefslogtreecommitdiff
path: root/Juick/Views/ConversationCell.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-03-20 05:43:08 +0300
committerGravatar Vitaly Takmazov2021-03-20 05:43:08 +0300
commit4a892ab5db316d4e90d580d0192c55cd11e452c1 (patch)
treee7bc06ea2cf073479c08e3482c50b925a9552bf0 /Juick/Views/ConversationCell.m
parent6f8f700ea02102621e88da6a6f96a869cdeefb7b (diff)
cell selectionStyle
Diffstat (limited to 'Juick/Views/ConversationCell.m')
-rw-r--r--Juick/Views/ConversationCell.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/Juick/Views/ConversationCell.m b/Juick/Views/ConversationCell.m
index 4c1e71c..21a3af2 100644
--- a/Juick/Views/ConversationCell.m
+++ b/Juick/Views/ConversationCell.m
@@ -11,6 +11,7 @@
@implementation ConversationCell
-(void) configureWithChat:(Chat *)chat {
+ self.selectionStyle = UITableViewCellSelectionStyleNone;
self.chatName.textColor = [UIColor colorNamed:@"Title"];
self.chatName.text = chat.uname;
self.lastMessage.text = chat.lastMessageText;