From 4495ad8e55eea42c0e13422d69fe70d210ec35d4 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 22 Mar 2022 19:59:22 +0100 Subject: [PATCH] Properly enable hovering on message action menu --- resources/qml/MessageView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index fa512e02..e5dd91b9 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -65,6 +65,7 @@ Item { property var attachedPos: chat.contentY, attached ? chat.mapFromItem(attached, attached ? attached.width - width : 0, -height) : null padding: Nheko.paddingSmall + hoverEnabled: true visible: Settings.buttonsInTimeline && !!attached && (attached.hovered || hovered) x: attached ? attachedPos.x : 0 y: attached ? attachedPos.y + Nheko.paddingMedium : 0