From 6abfe8b44f0057d16f279e96343a4b4850c7dc46 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Fri, 4 Apr 2025 15:16:20 +0200 Subject: [PATCH] Fix room list menu not opening --- resources/qml/RoomList.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/RoomList.qml b/resources/qml/RoomList.qml index 6a7efaa5..546be6c9 100644 --- a/resources/qml/RoomList.qml +++ b/resources/qml/RoomList.qml @@ -550,7 +550,7 @@ Page { onSingleTapped: { if (!TimelineManager.isInvite) - roomContextMenu.show(roomItemTh, roomId, tags); + roomContextMenu.show(roomItemTh.parent, roomId, tags); } } }