mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Try to fix binding loop warning
This commit is contained in:
parent
362efbf5b9
commit
05aa7f948a
1 changed files with 4 additions and 3 deletions
|
@ -59,9 +59,10 @@ Item {
|
||||||
|
|
||||||
ScrollBar.vertical: ScrollBar {
|
ScrollBar.vertical: ScrollBar {
|
||||||
id: scrollbar
|
id: scrollbar
|
||||||
anchors.top: parent.top
|
parent: chat.parent
|
||||||
anchors.left: parent.right
|
anchors.top: chat.top
|
||||||
anchors.bottom: parent.bottom
|
anchors.left: chat.right
|
||||||
|
anchors.bottom: chat.bottom
|
||||||
onPressedChanged: if (!pressed) chat.updatePosition()
|
onPressedChanged: if (!pressed) chat.updatePosition()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue