From 08c9b0daaaa4af1908ab385a313ef4be61ba6b35 Mon Sep 17 00:00:00 2001 From: Gaelle Braud Date: Thu, 11 Sep 2025 15:45:49 +0200 Subject: [PATCH] fix ui glitch conversation details panel #LINQT-1905 --- Linphone/view/Page/Form/Chat/SelectedChatView.qml | 6 ++++++ Linphone/view/Page/Layout/Chat/ConversationInfos.qml | 1 + 2 files changed, 7 insertions(+) diff --git a/Linphone/view/Page/Form/Chat/SelectedChatView.qml b/Linphone/view/Page/Form/Chat/SelectedChatView.qml index e01b1c30e..06e6a31e0 100644 --- a/Linphone/view/Page/Form/Chat/SelectedChatView.qml +++ b/Linphone/view/Page/Form/Chat/SelectedChatView.qml @@ -576,6 +576,12 @@ FocusScope { contentLoader.item.parentView = mainItem } } + Connections { + target: mainItem + function onChatChanged() { + detailsPanel.visible = false + } + } } Component { diff --git a/Linphone/view/Page/Layout/Chat/ConversationInfos.qml b/Linphone/view/Page/Layout/Chat/ConversationInfos.qml index 881c1605a..caccf5947 100644 --- a/Linphone/view/Page/Layout/Chat/ConversationInfos.qml +++ b/Linphone/view/Page/Layout/Chat/ConversationInfos.qml @@ -250,6 +250,7 @@ ColumnLayout { anchors.top: parent.top anchors.bottom: parent.bottom anchors.right: parent.right + visible: scrollView.contentHeight > scrollView.height } ColumnLayout {