mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
commit
71a7dace81
2 changed files with 2 additions and 3 deletions
|
@ -256,7 +256,7 @@ Item {
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
topPadding: userName_.visible? 4: 0
|
topPadding: userName_.visible? 4: 0
|
||||||
bottomPadding: Settings.bubbles? (isSender? 0 : 2) : 3
|
bottomPadding: Settings.bubbles? (isSender && previousMessageDay == day? 0 : 2) : 3
|
||||||
spacing: 8
|
spacing: 8
|
||||||
visible: (previousMessageUserId !== userId || previousMessageDay !== day || isStateEvent !== previousMessageIsStateEvent)
|
visible: (previousMessageUserId !== userId || previousMessageDay !== day || isStateEvent !== previousMessageIsStateEvent)
|
||||||
width: parentWidth
|
width: parentWidth
|
||||||
|
|
|
@ -78,7 +78,7 @@ Item {
|
||||||
anchors.right: isStateEvent? undefined: (bubbleOnRight? parent.right : undefined)
|
anchors.right: isStateEvent? undefined: (bubbleOnRight? parent.right : undefined)
|
||||||
anchors.horizontalCenter: isStateEvent? parent.horizontalCenter : undefined
|
anchors.horizontalCenter: isStateEvent? parent.horizontalCenter : undefined
|
||||||
property int maxWidth: parent.width-anchors.leftMargin-anchors.rightMargin
|
property int maxWidth: parent.width-anchors.leftMargin-anchors.rightMargin
|
||||||
width: Settings.bubbles? Math.min(maxWidth,implicitWidth+metadata.width+12) : maxWidth
|
width: Settings.bubbles? Math.min(maxWidth,Math.max(reply.implicitWidth+8,contentItem.implicitWidth+metadata.width+20)) : maxWidth
|
||||||
leftPadding: 4
|
leftPadding: 4
|
||||||
rightPadding: (Settings.bubbles && !isStateEvent)? 4: 2
|
rightPadding: (Settings.bubbles && !isStateEvent)? 4: 2
|
||||||
topPadding: (Settings.bubbles && !isStateEvent)? 4: 2
|
topPadding: (Settings.bubbles && !isStateEvent)? 4: 2
|
||||||
|
@ -142,7 +142,6 @@ Item {
|
||||||
Layout.column: 0
|
Layout.column: 0
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: height
|
Layout.preferredHeight: height
|
||||||
Layout.minimumWidth: 80
|
|
||||||
id: contentItem
|
id: contentItem
|
||||||
|
|
||||||
blurhash: r.blurhash
|
blurhash: r.blurhash
|
||||||
|
|
Loading…
Reference in a new issue