From d83ca70bef738797bda3e2a57780ab03b258b014 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Tue, 20 Oct 2020 14:29:15 -0400 Subject: [PATCH] fix: don't close group info popup when closing profile popup --- ui/app/AppLayouts/Chat/components/GroupInfoPopup.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/components/GroupInfoPopup.qml b/ui/app/AppLayouts/Chat/components/GroupInfoPopup.qml index 9f0ad4d053..bbdd206320 100644 --- a/ui/app/AppLayouts/Chat/components/GroupInfoPopup.qml +++ b/ui/app/AppLayouts/Chat/components/GroupInfoPopup.qml @@ -291,7 +291,7 @@ ModalPopup { MouseArea { anchors.fill: parent cursorShape: Qt.PointingHandCursor - onClicked: openProfilePopup(model.userName, model.pubKey, model.identicon, '', contactRow.nickname, popup) + onClicked: openProfilePopup(model.userName, model.pubKey, model.identicon, '', contactRow.nickname) } }