Skip to content
Snippets Groups Projects
Unverified Commit 71a7dace authored by Nicolas Werner's avatar Nicolas Werner Committed by GitHub
Browse files

Merge pull request #992 from maltee1/bubble_fixes

Bubble fixes
parents b19d9cab 637abac3
No related branches found
No related tags found
No related merge requests found
Pipeline #2816 failed
......@@ -256,7 +256,7 @@ Item {
Column {
topPadding: userName_.visible? 4: 0
bottomPadding: Settings.bubbles? (isSender? 0 : 2) : 3
bottomPadding: Settings.bubbles? (isSender && previousMessageDay == day? 0 : 2) : 3
spacing: 8
visible: (previousMessageUserId !== userId || previousMessageDay !== day || isStateEvent !== previousMessageIsStateEvent)
width: parentWidth
......
......@@ -78,7 +78,7 @@ Item {
anchors.right: isStateEvent? undefined: (bubbleOnRight? parent.right : undefined)
anchors.horizontalCenter: isStateEvent? parent.horizontalCenter : undefined
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
rightPadding: (Settings.bubbles && !isStateEvent)? 4: 2
topPadding: (Settings.bubbles && !isStateEvent)? 4: 2
......@@ -142,7 +142,6 @@ Item {
Layout.column: 0
Layout.fillWidth: true
Layout.preferredHeight: height
Layout.minimumWidth: 80
id: contentItem
blurhash: r.blurhash
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment