From d7e0954e86a8ab024ff85d059fe074fdb823ba76 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Tue, 19 Mar 2024 21:27:18 +0100 Subject: [PATCH] Fix opening manual room dialog --- src/qml/ExploreRoomsPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/ExploreRoomsPage.qml b/src/qml/ExploreRoomsPage.qml index bc1539e83..43ea0783e 100644 --- a/src/qml/ExploreRoomsPage.qml +++ b/src/qml/ExploreRoomsPage.qml @@ -98,6 +98,7 @@ SearchPage { let dialog = manualRoomDialog.createObject(applicationWindow().overlay, { connection: root.connection }); + dialog.parent = root.Window.window.overlay; dialog.roomSelected.connect((roomId, displayName, avatarUrl, alias, topic, memberCount, isJoined) => { root.roomSelected(roomId, displayName, avatarUrl, alias, topic, memberCount, isJoined); root.closeDialog();