diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-20 13:59:36 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-20 14:00:35 +0200 |
commit | 71a153538f4c1a300d9396d46c69d28bf1e9cf0b (patch) | |
tree | 8fd4c9edf37ef465cf44fa5b4fda85b7b6d00cb9 /resources/qml/TimelineView.qml | |
parent | Cleanup @room escape logic a bit (diff) | |
download | nheko-71a153538f4c1a300d9396d46c69d28bf1e9cf0b.tar.xz |
Disable async timeline loading, since it hangs in a layout loop sometimes
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index 0da7d6c2..9015bafa 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -86,7 +86,7 @@ Item { Loader { active: room || roomPreview - asynchronous: true + asynchronous: false Layout.fillWidth: true sourceComponent: MessageView { |