diff --git a/src/app/commoncomponents/ShowMoreMenu.qml b/src/app/commoncomponents/ShowMoreMenu.qml index d5fef3f4..28ff3012 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 07bed113..afad161e 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 } } }