diff --git a/src/app/commoncomponents/ShowMoreMenu.qml b/src/app/commoncomponents/ShowMoreMenu.qml index d5fef3f4ad15d91022007382eed8cd36bdee418e..28ff3012fb570417b719c03ed0fca8b2a7b6a941 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 07bed113ee31b0af98d55532ce31578726264705..afad161e4d3ec3e331307346674b5ca4b1c26c46 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 } } }