diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2023-02-13 20:44:42 -0500 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2023-02-20 16:35:00 -0500 |
commit | 66d8a38c80f39ddaf2954d3400a731ec5c7e4c0b (patch) | |
tree | 746bd899d74cf1e50d84823aa9536c048557d2ae /resources/qml/RoomList.qml | |
parent | Merge branch 'cirrus_updates' into 'master' (diff) | |
download | nheko-66d8a38c80f39ddaf2954d3400a731ec5c7e4c0b.tar.xz |
Blurhash images when the privacy screen is active
Diffstat (limited to 'resources/qml/RoomList.qml')
-rw-r--r-- | resources/qml/RoomList.qml | 8 |
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 } |