From 4ef65219ad088f45e85312e5a49d4632bd76b875 Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Tue, 10 Jun 2025 12:00:23 +0200 Subject: [PATCH] Prevent freeze when left chatroom is opened --- Linphone/view/Page/Form/Chat/SelectedChatView.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Linphone/view/Page/Form/Chat/SelectedChatView.qml b/Linphone/view/Page/Form/Chat/SelectedChatView.qml index a01f153b4..4d12c73a3 100644 --- a/Linphone/view/Page/Form/Chat/SelectedChatView.qml +++ b/Linphone/view/Page/Form/Chat/SelectedChatView.qml @@ -220,9 +220,8 @@ RowLayout { } ChatDroppableTextArea { id: messageSender - visible: !mainItem.chat.core.isReadOnly Layout.fillWidth: true - Layout.preferredHeight: height + Layout.preferredHeight: mainItem.chat.core.isReadOnly ? 0 : height Component.onCompleted: { if (mainItem.chat) text = mainItem.chat.core.sendingText }