2 files changed, 0 insertions, 16 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml
index 102d0411..0a0f90cf 100644
--- a/resources/qml/Root.qml
+++ b/resources/qml/Root.qml
@@ -141,20 +141,14 @@ Page {
});
membersDialog.show();
}
- }
- Connections {
- target: Rooms.currentRoom
onOpenRoomSettingsDialog: {
var roomSettings = roomSettingsComponent.createObject(timelineRoot, {
"roomSettings": settings
});
roomSettings.show();
}
- }
- Connections {
- target: Rooms.currentRoom
onOpenInviteUsersDialog: {
var dialog = inviteDialog.createObject(timelineRoot, {
"roomId": Rooms.currentRoom.roomId,
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index f5979e14..c5cc69a6 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -249,14 +249,4 @@ Item {
roomid: room ? room.roomId : ""
}
- Connections {
- target: room
- onOpenRoomSettingsDialog: {
- var roomSettings = roomSettingsComponent.createObject(timelineRoot, {
- "roomSettings": settings
- });
- roomSettings.show();
- }
- }
-
}
|