From 0d24a2520de294555518028709b30bd6c7cf439d Mon Sep 17 00:00:00 2001 From: Alexandra Betouni Date: Mon, 16 May 2022 13:31:24 +0300 Subject: [PATCH] fix(Settings): Centered send contact request popup Closes #5732 --- ui/app/AppLayouts/Profile/views/ContactsView.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Profile/views/ContactsView.qml b/ui/app/AppLayouts/Profile/views/ContactsView.qml index 7b1d22cd83..ae9e931537 100644 --- a/ui/app/AppLayouts/Profile/views/ContactsView.qml +++ b/ui/app/AppLayouts/Profile/views/ContactsView.qml @@ -329,6 +329,8 @@ SettingsContentBase { Loader { id: sendContactRequest + width: parent.width + height: parent.height active: false function open() { @@ -340,9 +342,8 @@ SettingsContentBase { } sourceComponent: SendContactRequestModal { - anchors.centerIn: root + anchors.centerIn: parent contactsStore: root.contactsStore - onClosed: { sendContactRequest.close(); }