diff options
author | Malte E <malte.e@mailbox.org> | 2022-02-18 21:29:14 +0100 |
---|---|---|
committer | Malte E <malte.e@mailbox.org> | 2022-02-18 21:29:14 +0100 |
commit | a3fcb4d9909973902536ee866db4a4cce422e39a (patch) | |
tree | 38e12317d766db00dcdb00ee5c729ed583411006 /resources/qml/TimelineRow.qml | |
parent | make search usable on mobile (diff) | |
download | nheko-a3fcb4d9909973902536ee866db4a4cce422e39a.tar.xz |
fix awkward message spacing
Diffstat (limited to '')
-rw-r--r-- | resources/qml/TimelineRow.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml index cc081679..8849545f 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml @@ -48,7 +48,7 @@ Item { property bool hovered: false width: parent.width - height: childrenRect.height + height: row.height+(reactionRow > 0 ? reactionRow.height-2 : 0 ) Rectangle { color: (Settings.messageHoverHighlight && hovered) ? Nheko.colors.alternateBase : "transparent" |