From 010a7e0d8e7d4eaa88a3b1a5540d79365c9a919c Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Thu, 18 Mar 2021 13:02:15 +0100 Subject: [PATCH] feat(Communities): open member profile on memberlist click --- .../CommunityComponents/CommunityProfilePopupMembersList.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml index de75a7dc57..f315d6f19b 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopupMembersList.qml @@ -114,6 +114,7 @@ Item { onEntered: contactRow.isHovered = true onExited: contactRow.isHovered = false acceptedButtons: Qt.LeftButton | Qt.RightButton + onClicked: openProfilePopup(model.userName, model.pubKey, model.identicon, '', contactRow.nickname) } StatusContextMenuButton {