summary refs log tree commit diff
diff options
context:
space:
mode:
authorMalte E <malte.e@mailbox.org>2022-02-18 21:33:09 +0100
committerMalte E <malte.e@mailbox.org>2022-02-18 21:33:09 +0100
commitc405eddea6d5ee8cad4ba31e06ec79af9630fc38 (patch)
treea7926f729419ee372e47d11f0f4cc475438292c7
parentfix awkward message spacing (diff)
downloadnheko-c405eddea6d5ee8cad4ba31e06ec79af9630fc38.tar.xz
actually fix awkward message spacing
-rw-r--r--resources/qml/TimelineRow.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml
index 8849545f..0ff33bf8 100644
--- a/resources/qml/TimelineRow.qml
+++ b/resources/qml/TimelineRow.qml
@@ -48,7 +48,7 @@ Item {
     property bool hovered: false
 
     width: parent.width
-    height: row.height+(reactionRow > 0 ? reactionRow.height-2 : 0 )
+    height: row.height+(reactionRow.height > 0 ? reactionRow.height-2 : 0 )
 
     Rectangle {
         color: (Settings.messageHoverHighlight && hovered) ? Nheko.colors.alternateBase : "transparent"