From 62f7d8a620e41db0fbb40eb1c82104681e180c36 Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Mon, 5 Sep 2022 18:58:11 +0200 Subject: [PATCH] =?UTF-8?q?0010414:=20Ios=20Build=202.1=20(3)=20Probl?= =?UTF-8?q?=C3=A9me=20d'affichage=20de=20la=20ligne=20de=20notification=20?= =?UTF-8?q?d'=C3=A9criture=20du=20correspondant.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Classes/ChatConversationView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/ChatConversationView.m b/Classes/ChatConversationView.m index 916742652..00184dfaa 100644 --- a/Classes/ChatConversationView.m +++ b/Classes/ChatConversationView.m @@ -794,9 +794,9 @@ static UICompositeViewDescription *compositeDescription = nil; // if we're showing the compose message, update it position if (![_composeLabel isHidden]) { - CGRect frame = [_composeLabel frame]; + CGRect frame = [_composeIndicatorView frame]; frame.origin.y -= diff; - [_composeLabel setFrame:frame]; + [_composeIndicatorView setFrame:frame]; } } }