Skip to content
Snippets Groups Projects
Commit 330b9d62 authored by Loren Burkholder's avatar Loren Burkholder
Browse files

Move read receipts connection to allow for future pop-out room views

parent 135622e1
No related branches found
No related tags found
No related merge requests found
Pipeline #1494 passed
...@@ -172,18 +172,6 @@ Page { ...@@ -172,18 +172,6 @@ Page {
target: TimelineManager target: TimelineManager
} }
Connections {
function onOpenReadReceiptsDialog(rr) {
var dialog = readReceiptsDialog.createObject(timelineRoot, {
"readReceipts": rr,
"room": Rooms.currentRoom
});
dialog.show();
}
target: Rooms.currentRoom
}
Connections { Connections {
function onNewInviteState() { function onNewInviteState() {
if (CallManager.haveCallInvite && Settings.mobileMode) { if (CallManager.haveCallInvite && Settings.mobileMode) {
......
...@@ -249,4 +249,16 @@ Item { ...@@ -249,4 +249,16 @@ Item {
roomid: room ? room.roomId : "" roomid: room ? room.roomId : ""
} }
Connections {
function onOpenReadReceiptsDialog(rr) {
var dialog = readReceiptsDialog.createObject(timelineRoot, {
"readReceipts": rr,
"room": room
});
dialog.show();
}
target: room
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment