From d6c66661960c525489756e3a9aea8844fc91e663 Mon Sep 17 00:00:00 2001 From: Michal Iskierko Date: Fri, 11 Mar 2022 14:22:21 +0100 Subject: [PATCH] fix(@desktop/profile): Clip user list when dragging Fixes #3747 --- ui/app/AppLayouts/Profile/views/ContactsView.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/app/AppLayouts/Profile/views/ContactsView.qml b/ui/app/AppLayouts/Profile/views/ContactsView.qml index 115894fb16..53de47c400 100644 --- a/ui/app/AppLayouts/Profile/views/ContactsView.qml +++ b/ui/app/AppLayouts/Profile/views/ContactsView.qml @@ -135,6 +135,7 @@ Item { ContactsListPanel { anchors.top: parent.top anchors.bottom: parent.bottom + clip: true contactsModel: root.contactsStore.blockedContactsModel onOpenProfilePopup: { @@ -256,6 +257,7 @@ Item { anchors.topMargin: Style.current.bigPadding anchors.bottom: parent.bottom contactsModel: root.contactsStore.myContactsModel + clip: true hideBlocked: true searchString: searchBox.text