fix ui glitch conversation details panel #LINQT-1905

This commit is contained in:
Gaelle Braud 2025-09-11 15:45:49 +02:00
parent f8119e607d
commit 08c9b0daaa
2 changed files with 7 additions and 0 deletions

View file

@ -576,6 +576,12 @@ FocusScope {
contentLoader.item.parentView = mainItem
}
}
Connections {
target: mainItem
function onChatChanged() {
detailsPanel.visible = false
}
}
}
Component {

View file

@ -250,6 +250,7 @@ ColumnLayout {
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.right: parent.right
visible: scrollView.contentHeight > scrollView.height
}
ColumnLayout {