From 8a9aea2f2842eb35ff7e96046fd72b820f675b83 Mon Sep 17 00:00:00 2001 From: lcoursodon <liam.coursodon@savoirfairelinux.com> Date: Wed, 25 Oct 2023 14:20:20 -0400 Subject: [PATCH] Patch menu: position of the popup Change-Id: I9a07dccc7bb4a17c0ce3046906f922d5ace35f8a --- src/app/commoncomponents/ShowMoreMenu.qml | 4 ++-- src/app/mainview/components/MessageBar.qml | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/commoncomponents/ShowMoreMenu.qml b/src/app/commoncomponents/ShowMoreMenu.qml index d5fef3f4a..28ff3012f 100644 --- a/src/app/commoncomponents/ShowMoreMenu.qml +++ b/src/app/commoncomponents/ShowMoreMenu.qml @@ -45,10 +45,10 @@ BaseContextMenu { const listViewWidth = listView.width; if (isOutgoing) { const leftMargin = msgBubble.mapToItem(listView, 0, 0).x; - return width > leftMargin ? -leftMargin - 20 : -width - 20; + return width > leftMargin ? -leftMargin - 35 : -width - 35; } else { const rightMargin = listViewWidth - (msgBubble.x + msgBubble.width); - return width > rightMargin ? msgBubble.width - width + 20 : msgBubble.width + 20; + return width > rightMargin ? msgBubble.width - width + 35 : msgBubble.width + 35; } } function yPositionProvider(height) { diff --git a/src/app/mainview/components/MessageBar.qml b/src/app/mainview/components/MessageBar.qml index 07bed113e..afad161e4 100644 --- a/src/app/mainview/components/MessageBar.qml +++ b/src/app/mainview/components/MessageBar.qml @@ -124,7 +124,6 @@ RowLayout { } modelList: listViewMoreButton.menuMoreButton y: -140 - x: -20 } } } -- GitLab