From a4d56e376fb56394c45e3980d471f897c972e532 Mon Sep 17 00:00:00 2001 From: Alan Evans Date: Thu, 21 Jan 2021 18:07:43 -0400 Subject: [PATCH] Allow clicking on typer avatar to bring up their bottom sheet details. --- .../securesms/components/ConversationTypingView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/org/thoughtcrime/securesms/components/ConversationTypingView.java b/app/src/main/java/org/thoughtcrime/securesms/components/ConversationTypingView.java index 4c56a7879..8eb881ca8 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/components/ConversationTypingView.java +++ b/app/src/main/java/org/thoughtcrime/securesms/components/ConversationTypingView.java @@ -44,7 +44,7 @@ public class ConversationTypingView extends LinearLayout { bubble.getBackground().setColorFilter(typist.getColor().toConversationColor(getContext()), PorterDuff.Mode.MULTIPLY); if (isGroupThread) { - avatar.setAvatar(glideRequests, typist, false); + avatar.setAvatar(glideRequests, typist, true); avatar.setVisibility(VISIBLE); } else { avatar.setVisibility(GONE);