From 9a76ce7ccdf6b05360f68d5dd08f93ec75d6264b Mon Sep 17 00:00:00 2001 From: Marcel Hibbe Date: Tue, 23 May 2023 11:50:33 +0200 Subject: [PATCH] fix to close gap between typing indicator and message input otherwise chat content was visible in between Signed-off-by: Marcel Hibbe --- app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt b/app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt index a3a4ce232..a8a686be7 100644 --- a/app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt +++ b/app/src/main/java/com/nextcloud/talk/chat/ChatActivity.kt @@ -971,7 +971,7 @@ class ChatActivity : if (participantNames.size > 0) { binding.typingIndicatorWrapper.animate() - .translationY(binding.messageInputView.y - DisplayUtils.convertDpToPixel(20f, context)) + .translationY(binding.messageInputView.y - DisplayUtils.convertDpToPixel(18f, context)) .setInterpolator(AccelerateDecelerateInterpolator()) .duration = TYPING_INDICATOR_ANIMATION_DURATION } else {