fix ui glitch conversation details panel #LINQT-1905
This commit is contained in:
parent
f8119e607d
commit
08c9b0daaa
2 changed files with 7 additions and 0 deletions
|
|
@ -576,6 +576,12 @@ FocusScope {
|
||||||
contentLoader.item.parentView = mainItem
|
contentLoader.item.parentView = mainItem
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Connections {
|
||||||
|
target: mainItem
|
||||||
|
function onChatChanged() {
|
||||||
|
detailsPanel.visible = false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Component {
|
Component {
|
||||||
|
|
|
||||||
|
|
@ -250,6 +250,7 @@ ColumnLayout {
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
|
visible: scrollView.contentHeight > scrollView.height
|
||||||
}
|
}
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue