From 624da5e028ef2f9ad0ff3859cf7e9eab1a3c7b66 Mon Sep 17 00:00:00 2001 From: tastytea Date: Fri, 18 Feb 2022 01:55:01 +0100 Subject: [PATCH] Make hover highlight fill the full width of the timeline Rows in the message bubble design are only as wide as the bubbles. This lead to invisible hover highlight. Now it's consistent. --- resources/qml/TimelineRow.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/TimelineRow.qml b/resources/qml/TimelineRow.qml index 7d17842f..cc081679 100644 --- a/resources/qml/TimelineRow.qml +++ b/resources/qml/TimelineRow.qml @@ -52,7 +52,8 @@ Item { Rectangle { color: (Settings.messageHoverHighlight && hovered) ? Nheko.colors.alternateBase : "transparent" - anchors.fill: row + anchors.fill: parent + anchors.leftMargin: Settings.smallAvatars? 0 : Nheko.avatarSize+8 } TapHandler {