From 45f147fa956f6dbbfa64e3c6bb1ceb7f90626b9b Mon Sep 17 00:00:00 2001 From: Noelia Date: Tue, 12 Apr 2022 10:29:02 +0200 Subject: [PATCH] fix(Chat/ActivityCenter): Activity center context menu keeps moving position Fixes #5469. --- .../AppLayouts/Chat/panels/ActivityCenterPopupTopBarPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/panels/ActivityCenterPopupTopBarPanel.qml b/ui/app/AppLayouts/Chat/panels/ActivityCenterPopupTopBarPanel.qml index c89d7b757f..f932e375ea 100644 --- a/ui/app/AppLayouts/Chat/panels/ActivityCenterPopupTopBarPanel.qml +++ b/ui/app/AppLayouts/Chat/panels/ActivityCenterPopupTopBarPanel.qml @@ -108,7 +108,7 @@ Item { height: 32 type: StatusFlatRoundButton.Type.Secondary onClicked: { - let p = moreActionsBtn.mapToItem(otherButtons, moreActionsBtn.x, moreActionsMenu.y) + let p = moreActionsBtn.mapToItem(otherButtons, moreActionsBtn.x, moreActionsBtn.y) moreActionsMenu.popup(moreActionsBtn.width - moreActionsMenu.width, p.y + moreActionsBtn.height + 4) }