summary refs log tree commit diff
path: root/resources/qml/RoomList.qml
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2023-02-13 20:44:42 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2023-02-20 16:35:00 -0500
commit66d8a38c80f39ddaf2954d3400a731ec5c7e4c0b (patch)
tree746bd899d74cf1e50d84823aa9536c048557d2ae /resources/qml/RoomList.qml
parentMerge branch 'cirrus_updates' into 'master' (diff)
downloadnheko-66d8a38c80f39ddaf2954d3400a731ec5c7e4c0b.tar.xz
Blurhash images when the privacy screen is active
Diffstat (limited to 'resources/qml/RoomList.qml')
-rw-r--r--resources/qml/RoomList.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml
index f06fb15e..7dc89cc9 100644
--- a/resources/qml/RoomList.qml
+++ b/resources/qml/RoomList.qml
@@ -110,17 +110,21 @@ Page {
                 }
 
                 TimelineView {
-                    id: timelineView
+                    id: timeline
+
+                    privacyScreen: privacyScreen
                     anchors.fill: parent
                     room: roomWindowW.room
                     roomPreview: roomWindowW.roomPreview.roomid ? roomWindowW.roomPreview : null
                 }
 
                 PrivacyScreen {
+                    id: privacyScreen
+
                     anchors.fill: parent
                     visible: Settings.privacyScreen
                     screenTimeout: Settings.privacyScreenTimeout
-                    timelineRoot: timelineView
+                    timelineRoot: timeline
                     windowTarget: roomWindowW
                 }