mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
add space below datebubble and own message bubbles
This commit is contained in:
parent
8a78920b88
commit
3e59b76b54
1 changed files with 2 additions and 2 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
|
||||||
|
@ -396,7 +396,7 @@ Item {
|
||||||
|
|
||||||
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
|
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined
|
||||||
width: chat.delegateMaxWidth
|
width: chat.delegateMaxWidth
|
||||||
height: section.active ? section.height + timelinerow.height : timelinerow.height
|
height: section.active ? section.height + timelinerow.height: timelinerow.height
|
||||||
|
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue