diff options
author | Malte E <malte.e@mailbox.org> | 2022-02-18 21:33:09 +0100 |
---|---|---|
committer | Malte E <malte.e@mailbox.org> | 2022-02-18 21:33:09 +0100 |
commit | c405eddea6d5ee8cad4ba31e06ec79af9630fc38 (patch) | |
tree | a7926f729419ee372e47d11f0f4cc475438292c7 | |
parent | fix awkward message spacing (diff) | |
download | nheko-c405eddea6d5ee8cad4ba31e06ec79af9630fc38.tar.xz |
actually fix awkward message spacing
-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 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" |