diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-01-08 03:47:36 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-01-08 03:47:36 +0100 |
commit | fa53b5b5f3a8c570b21ed4fbcce6f0deb290ce93 (patch) | |
tree | 23d2f01cd9e74cf898d7d3fba49de2296cde41bd /resources/qml/MessageView.qml | |
parent | Make clazy happy (diff) | |
download | nheko-fa53b5b5f3a8c570b21ed4fbcce6f0deb290ce93.tar.xz |
Disable reuseItems again, since it still breaks on room switch
Diffstat (limited to 'resources/qml/MessageView.qml')
-rw-r--r-- | resources/qml/MessageView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index 0b7a5a20..97a121eb 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -47,7 +47,7 @@ Item { anchors.rightMargin: scrollbar.interactive ? scrollbar.width : 0 // reuseItems still has a few bugs, see https://bugreports.qt.io/browse/QTBUG-95105 https://bugreports.qt.io/browse/QTBUG-95107 //onModelChanged: if (room) room.sendReset() - reuseItems: true + //reuseItems: true boundsBehavior: Flickable.StopAtBounds displayMarginBeginning: height / 4 displayMarginEnd: height / 4 |