Try to fix binding loop warning

This commit is contained in:
Nicolas Werner 2019-12-07 15:00:06 +01:00
parent 362efbf5b9
commit 05aa7f948a
1 changed files with 4 additions and 3 deletions

View File

@ -59,9 +59,10 @@ Item {
ScrollBar.vertical: ScrollBar {
id: scrollbar
anchors.top: parent.top
anchors.left: parent.right
anchors.bottom: parent.bottom
parent: chat.parent
anchors.top: chat.top
anchors.left: chat.right
anchors.bottom: chat.bottom
onPressedChanged: if (!pressed) chat.updatePosition()
}