left margin for own messages in private chats

This commit is contained in:
Denis Fedoseev 2023-07-12 01:27:18 +03:00
parent 22930628ae
commit 656e8ccfe7
2 changed files with 2 additions and 5 deletions

View file

@ -363,9 +363,7 @@ ListItem {
anchors {
left: parent.left
leftMargin: 0
// leftMargin: messageListItem.isOwnMessage ? precalculatedValues.pageMarginDouble : 0
// leftMargin: precalculatedValues.showUserInfo ? (messageListItem.isOwnMessage ? precalculatedValues.pageMarginDouble : 0) : 0
leftMargin: page.isPrivateChat ? (messageListItem.isOwnMessage ? precalculatedValues.pageMarginDouble : 0) : 0 //левый марджин для собственных сообщений в приватных чатах. В остальных на полную ширину
verticalCenter: parent.verticalCenter
}
height: messageTextColumn.height + precalculatedValues.paddingMediumDouble

View file

@ -1172,8 +1172,7 @@ Page {
readonly property int paddingMediumDouble: 2 * Theme.paddingMedium
readonly property int entryWidth: chatView.width - pageMarginDouble //ширина полной строки сообщения вместе с аватаркой
readonly property int textItemWidth: entryWidth - profileThumbnailDimensions - Theme.paddingSmall
// readonly property int backgroundWidth: page.isChannel ? textItemWidth : textItemWidth - pageMarginDouble //ширина бэкграунда для канала/обычного чата
readonly property int backgroundWidth: textItemWidth //ширина бэкграунда для канала/обычного чата
readonly property int backgroundWidth: page.isPrivateChat ? textItemWidth - pageMarginDouble : textItemWidth //уменьшенная ширина сообщений для приватных чатов
readonly property int backgroundRadius: textItemWidth/50
readonly property int textColumnWidth: backgroundWidth - Theme.horizontalPageMargin
readonly property int messageInReplyToHeight: Theme.fontSizeExtraSmall * 2.571428571 + Theme.paddingSmall;